Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

check function argument names for subtypes #562

Merged
merged 1 commit into from
Nov 15, 2023

Conversation

KotlinIsland
Copy link
Owner

@KotlinIsland KotlinIsland commented Oct 31, 2023

@github-actions

This comment has been minimized.

This comment has been minimized.

This comment has been minimized.

This comment has been minimized.

mypy/checker.py Outdated Show resolved Hide resolved
mypy/typeshed/stdlib/builtins.pyi Show resolved Hide resolved
test-data/unit/check-protocols.test Show resolved Hide resolved

This comment has been minimized.

This comment has been minimized.

@KotlinIsland KotlinIsland merged commit eba432a into master Nov 15, 2023
19 checks passed
@KotlinIsland KotlinIsland deleted the work-properly-method-names branch November 15, 2023 11:33
Copy link

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

com2ann (https://github.com/ilevkivskyi/com2ann)
+ src/com2ann.py:143:5: error: Signature of "visit_Assign" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:143:5: note:      Superclass:
+ src/com2ann.py:143:5: note:          def visit_Assign(self, node: Assign) -> Any
+ src/com2ann.py:143:5: note:      Subclass:
+ src/com2ann.py:143:5: note:          def visit_Assign(self, s: Assign) -> None
+ src/com2ann.py:170:5: error: Signature of "visit_For" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:170:5: note:      Superclass:
+ src/com2ann.py:170:5: note:          def visit_For(self, node: For) -> Any
+ src/com2ann.py:170:5: note:      Subclass:
+ src/com2ann.py:170:5: note:          def visit_For(self, o: For) -> None
+ src/com2ann.py:173:5: error: Signature of "visit_AsyncFor" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:173:5: note:      Superclass:
+ src/com2ann.py:173:5: note:          def visit_AsyncFor(self, node: AsyncFor) -> Any
+ src/com2ann.py:173:5: note:      Subclass:
+ src/com2ann.py:173:5: note:          def visit_AsyncFor(self, o: AsyncFor) -> None
+ src/com2ann.py:176:5: error: Signature of "visit_With" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:176:5: note:      Superclass:
+ src/com2ann.py:176:5: note:          def visit_With(self, node: With) -> Any
+ src/com2ann.py:176:5: note:      Subclass:
+ src/com2ann.py:176:5: note:          def visit_With(self, o: With) -> None
+ src/com2ann.py:179:5: error: Signature of "visit_AsyncWith" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:179:5: note:      Superclass:
+ src/com2ann.py:179:5: note:          def visit_AsyncWith(self, node: AsyncWith) -> Any
+ src/com2ann.py:179:5: note:      Subclass:
+ src/com2ann.py:179:5: note:          def visit_AsyncWith(self, o: AsyncWith) -> None
+ src/com2ann.py:187:5: error: Signature of "visit_FunctionDef" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:187:5: note:      Superclass:
+ src/com2ann.py:187:5: note:          def visit_FunctionDef(self, node: FunctionDef) -> Any
+ src/com2ann.py:187:5: note:      Subclass:
+ src/com2ann.py:187:5: note:          def visit_FunctionDef(self, fdef: FunctionDef) -> None
+ src/com2ann.py:190:5: error: Signature of "visit_AsyncFunctionDef" incompatible with supertype "NodeVisitor"  [override]
+ src/com2ann.py:190:5: note:      Superclass:
+ src/com2ann.py:190:5: note:          def visit_AsyncFunctionDef(self, node: AsyncFunctionDef) -> Any
+ src/com2ann.py:190:5: note:      Subclass:
+ src/com2ann.py:190:5: note:          def visit_AsyncFunctionDef(self, fdef: AsyncFunctionDef) -> None

pycryptodome (https://github.com/Legrandin/pycryptodome)
+ lib/Crypto/SelfTest/Signature/test_pss.py: note: In member "test_positive_1" of class "PSS_Tests":
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: error: Argument 1 to "verify" of "PSS_SigScheme" has incompatible type "SHA256Hash"; expected "Hash"  [arg-type]
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note: Following member(s) of "SHA256Hash" have conflicts:
+ lib/Crypto/SelfTest/Signature/test_pss.py:73:25: note:     Expected:
+ 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:     Got:
+ 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: note: In member "runTest" of class "PKCS1_Legacy_Module_Tests":
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: error: Argument 1 to "sign" of "PSS_SigScheme" has incompatible type "SHA1Hash"; expected "Hash"  [arg-type]
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note: Following member(s) of "SHA1Hash" have conflicts:
+ lib/Crypto/SelfTest/Signature/test_pss.py:215:50: note:     Expected:
+ 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:     Got:
+ 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:218:42: error: Argument 1 to "verify" of "PSS_SigScheme" has incompatible type "SHA1Hash"; expected "Hash"  [arg-type]
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note: Following member(s) of "SHA1Hash" have conflicts:
+ lib/Crypto/SelfTest/Signature/test_pss.py:218:42: note:     Expected:
+ 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:     Got:
+ 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:222:42: error: Argument 1 to "verify" of "PSS_SigScheme" has incompatible type "SHA1Hash"; expected "Hash"  [arg-type]
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note: Following member(s) of "SHA1Hash" have conflicts:
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:     Expected:
+ 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:     Got:
+ lib/Crypto/SelfTest/Signature/test_pss.py:222:42: note:         def update(self, data: bytes | bytearray | memoryview) -> None
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:416:48: note: Following member(s) of Module "Crypto.Hash.SHA1" have conflicts:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:416:48: note:     Expected:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:416:48: note:         def new(data: bytes | None) -> Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:416:48: note:     Got:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:416:48: note:         def new(data: bytes | bytearray | memoryview | None = ...) -> SHA1Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:418:48: note: Following member(s) of Module "Crypto.Hash.SHA224" have conflicts:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:418:48: note:     Expected:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:418:48: note:         def new(data: bytes | None) -> Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:418:48: note:     Got:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:418:48: note:         def new(data: bytes | bytearray | memoryview | None = ...) -> SHA224Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:420:48: note: Following member(s) of Module "Crypto.Hash.SHA256" have conflicts:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:420:48: note:     Expected:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:420:48: note:         def new(data: bytes | None) -> Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:420:48: note:     Got:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:420:48: note:         def new(data: bytes | bytearray | memoryview | None = ...) -> SHA256Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:422:48: note: Following member(s) of Module "Crypto.Hash.SHA384" have conflicts:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:422:48: note:     Expected:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:422:48: note:         def new(data: bytes | None) -> Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:422:48: note:     Got:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:422:48: note:         def new(data: bytes | bytearray | memoryview | None = ...) -> SHA384Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:424:48: note: Following member(s) of Module "Crypto.Hash.SHA512" have conflicts:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:424:48: note:     Expected:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:424:48: note:         def new(data: bytes | None) -> Hash
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:424:48: note:     Got:
+ lib/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py:424:48: note:         def new(data: bytes | bytearray | memoryview | None = ..., truncate: str | None = ...) -> SHA512Hash

pytest (https://github.com/pytest-dev/pytest)
+ src/_pytest/reports.py:442:5: error: Signature of "toterminal" incompatible with supertype "TerminalRepr"  [override]
+ src/_pytest/reports.py:442:5: note:      Superclass:
+ src/_pytest/reports.py:442:5: note:          def toterminal(self, tw: TerminalWriter) -> None
+ src/_pytest/reports.py:442:5: note:      Subclass:
+ src/_pytest/reports.py:442:5: note:          def toterminal(self, out: TerminalWriter) -> None
+ src/_pytest/assertion/rewrite.py:90:5: error: Signature of "find_spec" incompatible with supertype "MetaPathFinder"  [override]
+ src/_pytest/assertion/rewrite.py:90:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:90:5: note:          def find_spec(self, fullname: str, path: Sequence[str] | None, target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/rewrite.py:90:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:90:5: note:          def find_spec(self, name: str, path: Sequence[str | bytes] | None = ..., target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/rewrite.py:90:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:90:5: note:          def find_spec(self, fullname: str, path: Sequence[str] | None, target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/rewrite.py:90:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:90:5: note:          def find_spec(self, name: str, path: Sequence[str | bytes] | None = ..., target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/rewrite.py:849:5: error: Signature of "visit_Assert" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:849:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:849:5: note:          def visit_Assert(self, node: Assert) -> Any
+ src/_pytest/assertion/rewrite.py:849:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:849:5: note:          def visit_Assert(self, assert_: Assert) -> list[stmt]
+ src/_pytest/assertion/rewrite.py:966:5: error: Signature of "visit_NamedExpr" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:966:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:966:5: note:          def visit_NamedExpr(self, node: NamedExpr) -> Any
+ src/_pytest/assertion/rewrite.py:966:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:966:5: note:          def visit_NamedExpr(self, name: NamedExpr) -> (NamedExpr, str)
+ src/_pytest/assertion/rewrite.py:978:5: error: Signature of "visit_Name" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:978:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:978:5: note:          def visit_Name(self, node: Name) -> Any
+ src/_pytest/assertion/rewrite.py:978:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:978:5: note:          def visit_Name(self, name: Name) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:988:5: error: Signature of "visit_BoolOp" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:988:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:988:5: note:          def visit_BoolOp(self, node: BoolOp) -> Any
+ src/_pytest/assertion/rewrite.py:988:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:988:5: note:          def visit_BoolOp(self, boolop: BoolOp) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:1039:5: error: Signature of "visit_UnaryOp" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1039:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1039:5: note:          def visit_UnaryOp(self, node: UnaryOp) -> Any
+ src/_pytest/assertion/rewrite.py:1039:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1039:5: note:          def visit_UnaryOp(self, unary: UnaryOp) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:1045:5: error: Signature of "visit_BinOp" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1045:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1045:5: note:          def visit_BinOp(self, node: BinOp) -> Any
+ src/_pytest/assertion/rewrite.py:1045:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1045:5: note:          def visit_BinOp(self, binop: BinOp) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:1053:5: error: Signature of "visit_Call" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1053:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1053:5: note:          def visit_Call(self, node: Call) -> Any
+ src/_pytest/assertion/rewrite.py:1053:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1053:5: note:          def visit_Call(self, call: Call) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:1089:5: error: Signature of "visit_Starred" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1089:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1089:5: note:          def visit_Starred(self, node: Starred) -> Any
+ src/_pytest/assertion/rewrite.py:1089:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1089:5: note:          def visit_Starred(self, starred: Starred) -> (Starred, str)
+ src/_pytest/assertion/rewrite.py:1095:5: error: Signature of "visit_Attribute" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1095:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1095:5: note:          def visit_Attribute(self, node: Attribute) -> Any
+ src/_pytest/assertion/rewrite.py:1095:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1095:5: note:          def visit_Attribute(self, attr: Attribute) -> (Name, str)
+ src/_pytest/assertion/rewrite.py:1105:5: error: Signature of "visit_Compare" incompatible with supertype "NodeVisitor"  [override]
+ src/_pytest/assertion/rewrite.py:1105:5: note:      Superclass:
+ src/_pytest/assertion/rewrite.py:1105:5: note:          def visit_Compare(self, node: Compare) -> Any
+ src/_pytest/assertion/rewrite.py:1105:5: note:      Subclass:
+ src/_pytest/assertion/rewrite.py:1105:5: note:          def visit_Compare(self, comp: Compare) -> (expr, str)
+ src/_pytest/doctest.py:482:32: error: Non-overlapping identity check (left operand type: "(Any) -> Any", right operand type: "(obj: object) -> bool")  [comparison-overlap]
+ src/_pytest/doctest.py:482:32: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-comparison-overlap for more info
- src/_pytest/assertion/__init__.py:69: error: "type: ignore" comment without error code (consider "type: ignore[assignment]" instead)  [ignore-without-code]
+ src/_pytest/assertion/__init__.py: note: In function "register_assert_rewrite":
+ src/_pytest/assertion/__init__.py:63:23: error: Intersection of "_MetaPathFinder & AssertionRewritingHook" cannot exist: would have incompatible method signatures  [unreachable]
+ src/_pytest/assertion/__init__.py:64:13: error: Statement is unreachable  [unreachable]
+ src/_pytest/assertion/__init__.py: note: At top level:
+ src/_pytest/assertion/__init__.py:69: error: Unused "type: ignore" comment  [unused-ignore]
+ src/_pytest/assertion/__init__.py: note: In function "install_importhook":
+ src/_pytest/assertion/__init__.py:93:29: error: Argument 2 to "insert" of "list" has incompatible type "AssertionRewritingHook"; expected "_MetaPathFinder"  [arg-type]
+ src/_pytest/assertion/__init__.py:93:29: note: Following member(s) of "AssertionRewritingHook" have conflicts:
+ src/_pytest/assertion/__init__.py:93:29: note:     Expected:
+ src/_pytest/assertion/__init__.py:93:29: note:         def find_spec(self, fullname: str, path: Sequence[str] | None, target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/__init__.py:93:29: note:     Got:
+ src/_pytest/assertion/__init__.py:93:29: note:         def find_spec(self, name: str, path: Sequence[str | bytes] | None = ..., target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/__init__.py:98:33: error: Non-overlapping container check (element type: "AssertionRewritingHook", container item type: "_MetaPathFinder")  [comparison-overlap]
+ src/_pytest/assertion/__init__.py:99:34: error: Argument 1 to "remove" of "list" has incompatible type "AssertionRewritingHook"; expected "_MetaPathFinder"  [arg-type]
+ src/_pytest/assertion/__init__.py:99:34: note: Following member(s) of "AssertionRewritingHook" have conflicts:
+ src/_pytest/assertion/__init__.py:99:34: note:     Expected:
+ src/_pytest/assertion/__init__.py:99:34: note:         def find_spec(self, fullname: str, path: Sequence[str] | None, target: Module | None = ...) -> ModuleSpec | None
+ src/_pytest/assertion/__init__.py:99:34: note:     Got:
+ src/_pytest/assertion/__init__.py:99:34: note:         def find_spec(self, name: str, path: Sequence[str | bytes] | None = ..., target: Module | None = ...) -> ModuleSpec | None
- testing/test_junitxml.py:75:12: note: See https://kotlinisland.github.io/basedmypy/_refs.html#code-comparison-overlap for more info

stone (https://github.com/dropbox/stone)
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_list" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "stone.backends.python_rsrc.stone_validators.List"  [arg-type]
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_map" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "Map"  [arg-type]
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_nullable" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "Nullable"  [arg-type]
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_primitive" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "Primitive"  [arg-type]
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_struct_tree" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "StructTree"  [arg-type]
- stone/backends/python_rsrc/stone_serializers.py:167:25: error: Argument 1 to "encode_union" of "StoneSerializerBase" has incompatible type "stone.backends.python_rsrc.stone_validators.List | Map | Nullable | Primitive | Struct | stone.backends.python_rsrc.stone_validators.Union"; expected "stone.backends.python_rsrc.stone_validators.Union"  [arg-type]

bandersnatch (https://github.com/pypa/bandersnatch)
+ src/bandersnatch_storage_plugins/swift.py:947:5: error: Signature of "symlink" incompatible with supertype "Storage"  [override]
+ src/bandersnatch_storage_plugins/swift.py:947:5: note:      Superclass:
+ src/bandersnatch_storage_plugins/swift.py:947:5: note:          def symlink(self, source: Path | str, dest: Path | str) -> None
+ src/bandersnatch_storage_plugins/swift.py:947:5: note:      Subclass:
+ src/bandersnatch_storage_plugins/swift.py:947:5: note:          def symlink(self, src: Path | str, dest: Path | str, src_container: str | None = ..., src_account: str | None = ...) -> None
+ src/bandersnatch_storage_plugins/s3.py:397:5: error: Signature of "symlink" incompatible with supertype "Storage"  [override]
+ src/bandersnatch_storage_plugins/s3.py:397:5: note:      Superclass:
+ src/bandersnatch_storage_plugins/s3.py:397:5: note:          def symlink(self, source: Path | str, dest: Path | str) -> None
+ src/bandersnatch_storage_plugins/s3.py:397:5: note:      Subclass:
+ src/bandersnatch_storage_plugins/s3.py:397:5: note:          def symlink(self, src: Path | str, dest: Path | str) -> None

jax (https://github.com/google/jax)
+ jax/_src/core.py:889:3: error: Signature of "pure" incompatible with supertype "Trace"  [override]
+ jax/_src/core.py:889:3: note:      Superclass:
+ jax/_src/core.py:889:3: note:          def pure(self, val: Untyped) -> Untyped
+ jax/_src/core.py:889:3: note:      Subclass:
+ jax/_src/core.py:889:3: note:          def pure(self, x: Untyped) -> None
+ jax/_src/core.py:895:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/_src/core.py:895:3: note:      Superclass:
+ jax/_src/core.py:895:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/core.py:895:3: note:      Subclass:
+ jax/_src/core.py:895:3: note:          def process_call(self, primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:151:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:151:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:151:3: note:          def lift(self, tracer: Untyped) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:151:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:151:3: note:          def lift(self, val: Tracer) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:154:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:154:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:154:3: note:          def sublift(self, tracer: Untyped) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:154:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:154:3: note:          def sublift(self, val: JaxprTracer) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:154:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:154:3: note:          def sublift(self, tracer: Untyped) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:154:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:154:3: note:          def sublift(self, val: JaxprTracer) -> JaxprTracer
+ jax/_src/interpreters/partial_eval.py:241:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:241:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:241:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:241:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:241:3: note:          def process_call(self, primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:241:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:241:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:241:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:241:3: note:          def process_call(self, primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:324:3: error: Signature of "process_map" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:324:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:324:3: note:          def process_map(self, map_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:324:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:324:3: note:          def process_map(self, primitive: Untyped, f: WrappedFun, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:324:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:324:3: note:          def process_map(self, map_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:324:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:324:3: note:          def process_map(self, primitive: Untyped, f: WrappedFun, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:467:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:467:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:467:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:467:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:467:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:498:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:498:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:498:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:498:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:498:3: note:          def process_custom_vjp_call(self, prim: Untyped, f: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:498:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:498:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:498:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:498:3: note:          def process_custom_vjp_call(self, prim: Untyped, f: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:1935:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:1935:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:1935:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/partial_eval.py:1935:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:1935:3: note:          def sublift(self, t: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:1996:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:1996:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:1996:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:1996:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:1996:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, explicit_tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:2076:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:2076:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:2076:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:2076:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:2076:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:2109:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/partial_eval.py:2109:3: note:      Superclass:
+ jax/_src/interpreters/partial_eval.py:2109:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/partial_eval.py:2109:3: note:      Subclass:
+ jax/_src/interpreters/partial_eval.py:2109:3: note:          def process_custom_vjp_call(self, prim: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/pxla.py:430:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/pxla.py:430:3: note:      Superclass:
+ jax/_src/interpreters/pxla.py:430:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/pxla.py:430:3: note:      Subclass:
+ jax/_src/interpreters/pxla.py:430:3: note:          def process_call(self, call_primitive: Untyped, fun: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/pxla.py:433:3: error: Signature of "process_map" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/pxla.py:433:3: note:      Superclass:
+ jax/_src/interpreters/pxla.py:433:3: note:          def process_map(self, map_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/pxla.py:433:3: note:      Subclass:
+ jax/_src/interpreters/pxla.py:433:3: note:          def process_map(self, map_primitive: Untyped, fun: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/_src/interpreters/pxla.py:459:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/pxla.py:459:3: note:      Superclass:
+ jax/_src/interpreters/pxla.py:459:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/pxla.py:459:3: note:      Subclass:
+ jax/_src/interpreters/pxla.py:459:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/batching.py:381:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/batching.py:381:3: note:      Superclass:
+ jax/_src/interpreters/batching.py:381:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/batching.py:381:3: note:      Subclass:
+ jax/_src/interpreters/batching.py:381:3: note:          def lift(self, val: Untyped) -> None
+ jax/_src/interpreters/batching.py:381:3: note:      Superclass:
+ jax/_src/interpreters/batching.py:381:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/batching.py:381:3: note:      Subclass:
+ jax/_src/interpreters/batching.py:381:3: note:          def lift(self, val: Untyped) -> None
+ jax/_src/interpreters/batching.py:384:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/batching.py:384:3: note:      Superclass:
+ jax/_src/interpreters/batching.py:384:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/batching.py:384:3: note:      Subclass:
+ jax/_src/interpreters/batching.py:384:3: note:          def sublift(self, val: Untyped) -> None
+ jax/_src/interpreters/batching.py:525:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/batching.py:525:3: note:      Superclass:
+ jax/_src/interpreters/batching.py:525:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/batching.py:525:3: note:      Subclass:
+ jax/_src/interpreters/batching.py:525:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/batching.py:525:3: note:      Superclass:
+ jax/_src/interpreters/batching.py:525:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/batching.py:525:3: note:      Subclass:
+ jax/_src/interpreters/batching.py:525:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:303:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/ad.py:303:3: note:      Superclass:
+ jax/_src/interpreters/ad.py:303:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/ad.py:303:3: note:      Subclass:
+ jax/_src/interpreters/ad.py:303:3: note:          def lift(self, val: Untyped) -> None
+ jax/_src/interpreters/ad.py:307:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/ad.py:307:3: note:      Superclass:
+ jax/_src/interpreters/ad.py:307:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/_src/interpreters/ad.py:307:3: note:      Subclass:
+ jax/_src/interpreters/ad.py:307:3: note:          def sublift(self, val: Untyped) -> None
+ jax/_src/interpreters/ad.py:374:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/ad.py:374:3: note:      Superclass:
+ jax/_src/interpreters/ad.py:374:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:374:3: note:      Subclass:
+ jax/_src/interpreters/ad.py:374:3: note:          def process_custom_jvp_call(self, _: Untyped, __: Untyped, f_jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:391:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/_src/interpreters/ad.py:391:3: note:      Superclass:
+ jax/_src/interpreters/ad.py:391:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:391:3: note:      Subclass:
+ jax/_src/interpreters/ad.py:391:3: note:          def process_custom_vjp_call(self, _: Untyped, __: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:391:3: note:      Superclass:
+ jax/_src/interpreters/ad.py:391:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/interpreters/ad.py:391:3: note:      Subclass:
+ jax/_src/interpreters/ad.py:391:3: note:          def process_custom_vjp_call(self, _: Untyped, __: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/_src/debugger/colab_debugger.py:233:3: error: Signature of "do_up" incompatible with supertype "CliDebugger"  [override]
+ jax/_src/debugger/colab_debugger.py:233:3: note:      Superclass:
+ jax/_src/debugger/colab_debugger.py:233:3: note:          def do_up(self, _: Untyped) -> None
+ jax/_src/debugger/colab_debugger.py:233:3: note:      Subclass:
+ jax/_src/debugger/colab_debugger.py:233:3: note:          def do_up(self, arg: Untyped) -> None
+ jax/_src/debugger/colab_debugger.py:238:3: error: Signature of "do_down" incompatible with supertype "CliDebugger"  [override]
+ jax/_src/debugger/colab_debugger.py:238:3: note:      Superclass:
+ jax/_src/debugger/colab_debugger.py:238:3: note:          def do_down(self, _: Untyped) -> None
+ jax/_src/debugger/colab_debugger.py:238:3: note:      Subclass:
+ jax/_src/debugger/colab_debugger.py:238:3: note:          def do_down(self, arg: Untyped) -> None
+ jax/_src/debugger/cli_debugger.py:50:3: error: Signature of "default" incompatible with supertype "Cmd"  [override]
+ jax/_src/debugger/cli_debugger.py:50:3: note:      Superclass:
+ jax/_src/debugger/cli_debugger.py:50:3: note:          def default(self, line: str) -> None
+ jax/_src/debugger/cli_debugger.py:50:3: note:      Subclass:
+ jax/_src/debugger/cli_debugger.py:50:3: note:          def default(self, arg: Untyped) -> None
+ jax/experimental/shard_map.py:718:3: error: Signature of "process_primitive" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:718:3: note:      Superclass:
+ jax/experimental/shard_map.py:718:3: note:          def process_primitive(self, primitive: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:718:3: note:      Subclass:
+ jax/experimental/shard_map.py:718:3: note:          def process_primitive(self, prim: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:734:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:734:3: note:      Superclass:
+ jax/experimental/shard_map.py:734:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:734:3: note:      Subclass:
+ jax/experimental/shard_map.py:734:3: note:          def process_call(self, call_primitive: Untyped, fun: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:741:3: error: Signature of "process_map" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:741:3: note:      Superclass:
+ jax/experimental/shard_map.py:741:3: note:          def process_map(self, map_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:741:3: note:      Subclass:
+ jax/experimental/shard_map.py:741:3: note:          def process_map(self, map_primitive: Untyped, fun: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:747:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:747:3: note:      Superclass:
+ jax/experimental/shard_map.py:747:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:747:3: note:      Subclass:
+ jax/experimental/shard_map.py:747:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:761:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:761:3: note:      Superclass:
+ jax/experimental/shard_map.py:761:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:761:3: note:      Subclass:
+ jax/experimental/shard_map.py:761:3: note:          def process_custom_vjp_call(self, prim: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1663:3: error: Signature of "process_primitive" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:1663:3: note:      Superclass:
+ jax/experimental/shard_map.py:1663:3: note:          def process_primitive(self, primitive: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1663:3: note:      Subclass:
+ jax/experimental/shard_map.py:1663:3: note:          def process_primitive(self, prim: Untyped, in_tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1671:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:1671:3: note:      Superclass:
+ jax/experimental/shard_map.py:1671:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1671:3: note:      Subclass:
+ jax/experimental/shard_map.py:1671:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, in_tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1671:3: note:      Superclass:
+ jax/experimental/shard_map.py:1671:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1671:3: note:      Subclass:
+ jax/experimental/shard_map.py:1671:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, in_tracers: Untyped, params: Untyped) -> None
+ jax/experimental/shard_map.py:1681:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:1681:3: note:      Superclass:
+ jax/experimental/shard_map.py:1681:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1681:3: note:      Subclass:
+ jax/experimental/shard_map.py:1681:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1681:3: note:      Superclass:
+ jax/experimental/shard_map.py:1681:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1681:3: note:      Subclass:
+ jax/experimental/shard_map.py:1681:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1699:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/shard_map.py:1699:3: note:      Superclass:
+ jax/experimental/shard_map.py:1699:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1699:3: note:      Subclass:
+ jax/experimental/shard_map.py:1699:3: note:          def process_custom_vjp_call(self, prim: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1699:3: note:      Superclass:
+ jax/experimental/shard_map.py:1699:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/shard_map.py:1699:3: note:      Subclass:
+ jax/experimental/shard_map.py:1699:3: note:          def process_custom_vjp_call(self, prim: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/jet.py:203:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/experimental/jet.py:203:3: note:      Superclass:
+ jax/experimental/jet.py:203:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/experimental/jet.py:203:3: note:      Subclass:
+ jax/experimental/jet.py:203:3: note:          def lift(self, val: Untyped) -> None
+ jax/experimental/jet.py:203:3: note:      Superclass:
+ jax/experimental/jet.py:203:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/experimental/jet.py:203:3: note:      Subclass:
+ jax/experimental/jet.py:203:3: note:          def lift(self, val: Untyped) -> None
+ jax/experimental/jet.py:206:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/experimental/jet.py:206:3: note:      Superclass:
+ jax/experimental/jet.py:206:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/experimental/jet.py:206:3: note:      Subclass:
+ jax/experimental/jet.py:206:3: note:          def sublift(self, val: Untyped) -> None
+ jax/_src/checkify.py:135:3: error: Signature of "tree_unflatten" incompatible with supertype "JaxException"  [override]
+ jax/_src/checkify.py:135:3: note:      Superclass:
+ jax/_src/checkify.py:135:3: note:          @classmethod
+ jax/_src/checkify.py:135:3: note:          def tree_unflatten(cls, metadata: Untyped, payload: Untyped) -> None
+ jax/_src/checkify.py:135:3: note:      Subclass:
+ jax/_src/checkify.py:135:3: note:          @classmethod
+ jax/_src/checkify.py:135:3: note:          def tree_unflatten(cls, metadata: Untyped, _: Untyped) -> None
+ jax/experimental/sparse/transform.py:313:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/experimental/sparse/transform.py:313:3: note:      Superclass:
+ jax/experimental/sparse/transform.py:313:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/experimental/sparse/transform.py:313:3: note:      Subclass:
+ jax/experimental/sparse/transform.py:313:3: note:          def lift(self, val: Tracer) -> None
+ jax/experimental/sparse/transform.py:319:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/experimental/sparse/transform.py:319:3: note:      Superclass:
+ jax/experimental/sparse/transform.py:319:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/experimental/sparse/transform.py:319:3: note:      Subclass:
+ jax/experimental/sparse/transform.py:319:3: note:          def sublift(self, val: SparseTracer) -> None
+ jax/experimental/jax2tf/jax2tf.py:1279:3: error: Signature of "lift" incompatible with supertype "Trace"  [override]
+ jax/experimental/jax2tf/jax2tf.py:1279:3: note:      Superclass:
+ jax/experimental/jax2tf/jax2tf.py:1279:3: note:          def lift(self, tracer: Untyped) -> Untyped
+ jax/experimental/jax2tf/jax2tf.py:1279:3: note:      Subclass:
+ jax/experimental/jax2tf/jax2tf.py:1279:3: note:          def lift(self, val: Tracer) -> TensorFlowTracer
+ jax/experimental/jax2tf/jax2tf.py:1285:3: error: Signature of "sublift" incompatible with supertype "Trace"  [override]
+ jax/experimental/jax2tf/jax2tf.py:1285:3: note:      Superclass:
+ jax/experimental/jax2tf/jax2tf.py:1285:3: note:          def sublift(self, tracer: Untyped) -> Untyped
+ jax/experimental/jax2tf/jax2tf.py:1285:3: note:      Subclass:
+ jax/experimental/jax2tf/jax2tf.py:1285:3: note:          def sublift(self, val: TensorFlowTracer) -> TensorFlowTracer
+ jax/experimental/jax2tf/jax2tf.py:1365:3: error: Signature of "process_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/jax2tf/jax2tf.py:1365:3: note:      Superclass:
+ jax/experimental/jax2tf/jax2tf.py:1365:3: note:          def process_call(self, call_primitive: Untyped, f: Untyped, tracers: Untyped, params: Untyped) -> None
+ jax/experimental/jax2tf/jax2tf.py:1365:3: note:      Subclass:
+ jax/experimental/jax2tf/jax2tf.py:1365:3: note:          def process_call(self, call_primitive: Primitive, fun: WrappedFun, tracers: Sequence[TensorFlowTracer], params: Untyped) -> None
+ jax/experimental/jax2tf/jax2tf.py:1401:3: error: Signature of "process_custom_jvp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/jax2tf/jax2tf.py:1401:3: note:      Superclass:
+ jax/experimental/jax2tf/jax2tf.py:1401:3: note:          def process_custom_jvp_call(self, primitive: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/jax2tf/jax2tf.py:1401:3: note:      Subclass:
+ jax/experimental/jax2tf/jax2tf.py:1401:3: note:          def process_custom_jvp_call(self, prim: Untyped, fun: Untyped, jvp: Untyped, tracers: Untyped, *, symbolic_zeros: Untyped) -> None
+ jax/experimental/jax2tf/jax2tf.py:1411:3: error: Signature of "process_custom_vjp_call" incompatible with supertype "Trace"  [override]
+ jax/experimental/jax2tf/jax2tf.py:1411:3: note:      Superclass:
+ jax/experimental/jax2tf/jax2tf.py:1411:3: note:          def process_custom_vjp_call(self, primitive: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None
+ jax/experimental/jax2tf/jax2tf.py:1411:3: note:      Subclass:
+ jax/experimental/jax2tf/jax2tf.py:1411:3: note:          def process_custom_vjp_call(self, prim: Untyped, fun: Untyped, fwd: Untyped, bwd: Untyped, tracers: Untyped, out_trees: Untyped, symbolic_zeros: Untyped) -> None

operator (https://github.com/canonical/operator)
+ ops/framework.py:1338:5: error: Signature of "add" incompatible with supertype "MutableSet"  [override]
+ ops/framework.py:1338:5: note:      Superclass:
+ ops/framework.py:1338:5: note:          def add(self, value: Any) -> None
+ ops/framework.py:1338:5: note:      Subclass:
+ ops/framework.py:1338:5: note:          def add(self, key: Any) -> None
+ ops/framework.py:1346:5: error: Signature of "discard" incompatible with supertype "MutableSet"  [override]
+ ops/framework.py:1346:5: note:      Superclass:
+ ops/framework.py:1346:5: note:          def discard(self, value: Any) -> None
+ ops/framework.py:1346:5: note:      Subclass:
+ ops/framework.py:1346:5: note:          def discard(self, key: Any) -> None

alerta (https://github.com/alerta/alerta)
+ alerta/database/backends/postgres/base.py:1448:5: error: Signature of "get_customer_notes" incompatible with supertype "Database"  [override]
+ alerta/database/backends/postgres/base.py:1448:5: note:      Superclass:
+ alerta/database/backends/postgres/base.py:1448:5: note:          def get_customer_notes(self, id: Untyped, page: Untyped = ..., page_size: Untyped = ...) -> None
+ alerta/database/backends/postgres/base.py:1448:5: note:      Subclass:
+ alerta/database/backends/postgres/base.py:1448:5: note:          def get_customer_notes(self, customer: Untyped, page: Untyped = ..., page_size: Untyped = ...) -> None
+ alerta/database/backends/mongodb/base.py:1513:5: error: Signature of "get_customer_notes" incompatible with supertype "Database"  [override]
+ alerta/database/backends/mongodb/base.py:1513:5: note:      Superclass:
+ alerta/database/backends/mongodb/base.py:1513:5: note:          def get_customer_notes(self, id: Untyped, page: Untyped = ..., page_size: Untyped = ...) -> None
+ alerta/database/backends/mongodb/base.py:1513:5: note:      Subclass:
+ alerta/database/backends/mongodb/base.py:1513:5: note:          def get_customer_notes(self, customer: Untyped, page: Untyped = ..., page_size: Untyped = ...) -> None

pandas (https://github.com/pandas-dev/pandas)
+ pandas/compat/compressors.py:55: error: Signature of "write" incompatible with supertype "BZ2File"  [override]
+ pandas/compat/compressors.py:55: note:      Superclass:
+ pandas/compat/compressors.py:55: note:          def write(self, data: Buffer) -> int
+ pandas/compat/compressors.py:55: note:      Subclass:
+ pandas/compat/compressors.py:55: note:          def write(self, b: Untyped) -> int
+ pandas/compat/compressors.py:70: error: Signature of "write" incompatible with supertype "LZMAFile"  [override]
+ pandas/compat/compressors.py:70: note:      Superclass:
+ pandas/compat/compressors.py:70: note:          def write(self, data: Buffer) -> int
+ pandas/compat/compressors.py:70: note:      Subclass:
+ pandas/compat/compressors.py:70: note:          def write(self, b: Untyped) -> int
+ pandas/core/arrays/timedeltas.py:1003: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/apply.py:1888: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/arrays/masked.py:894: error: Signature of "take" incompatible with supertype "ExtensionArray"  [override]
+ pandas/core/arrays/masked.py:894: note:      Superclass:
+ pandas/core/arrays/masked.py:894: note:          def take(self, indices: Sequence[int] | Sequence[integer[Untyped]] | ndarray[Any, dtype[integer[Untyped]]], *, allow_fill: bool = ..., fill_value: Any = ...) -> BaseMaskedArray
+ pandas/core/arrays/masked.py:894: note:      Subclass:
+ pandas/core/arrays/masked.py:894: note:          def take(self, indexer: Untyped, *, allow_fill: bool = ..., fill_value: str | float | bool | Period | Timestamp | Timedelta | Interval[Untyped] | datetime64 | timedelta64 | date | None = ..., axis: int = ...) -> BaseMaskedArray
+ pandas/core/arrays/datetimes.py:1508: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/arrays/numeric.py:258: error: Signature of "_coerce_to_array" incompatible with supertype "BaseMaskedArray"  [override]
+ pandas/core/arrays/numeric.py:258: note:      Superclass:
+ pandas/core/arrays/numeric.py:258: note:          @classmethod
+ pandas/core/arrays/numeric.py:258: note:          def _coerce_to_array(cls, values: Untyped, *, dtype: dtype[Untyped] | ExtensionDtype, copy: bool = ...) -> (ndarray[Untyped, Untyped], ndarray[Untyped, Untyped])
+ pandas/core/arrays/numeric.py:258: note:      Subclass:
+ pandas/core/arrays/numeric.py:258: note:          @classmethod
+ pandas/core/arrays/numeric.py:258: note:          def _coerce_to_array(cls, value: Untyped, *, dtype: dtype[Untyped] | ExtensionDtype, copy: bool = ...) -> (ndarray[Untyped, Untyped], ndarray[Untyped, Untyped])
+ pandas/core/arrays/boolean.py:351: error: Signature of "_coerce_to_array" incompatible with supertype "BaseMaskedArray"  [override]
+ pandas/core/arrays/boolean.py:351: note:      Superclass:
+ pandas/core/arrays/boolean.py:351: note:          @classmethod
+ pandas/core/arrays/boolean.py:351: note:          def _coerce_to_array(cls, values: Untyped, *, dtype: dtype[Untyped] | ExtensionDtype, copy: bool = ...) -> (ndarray[Untyped, Untyped], ndarray[Untyped, Untyped])
+ pandas/core/arrays/boolean.py:351: note:      Subclass:
+ pandas/core/arrays/boolean.py:351: note:          @classmethod
+ pandas/core/arrays/boolean.py:351: note:          def _coerce_to_array(cls, value: Untyped, *, dtype: dtype[Untyped] | ExtensionDtype, copy: bool = ...) -> (ndarray[Untyped, Untyped], ndarray[Untyped, Untyped])
+ pandas/core/arrays/sparse/array.py:1140: error: Signature of "searchsorted" incompatible with supertype "ExtensionArray"  [override]
+ pandas/core/arrays/sparse/array.py:1140: note:      Superclass:
+ pandas/core/arrays/sparse/array.py:1140: note:          def searchsorted(self, value: int | float | complex | str | bytes | generic | _SupportsArray[dtype[Any]] | _NestedSequence[_SupportsArray[dtype[Any]]] | bool | int | float | complex | str | bytes | _NestedSequence[bool | int | float | complex | str | bytes] | ExtensionArray, side: 'left' | 'right' = ..., sorter: Any | None | None = ...) -> ndarray[Any, dtype[signedinteger[Any]]] | signedinteger[Any]
+ pandas/core/arrays/sparse/array.py:1140: note:      Subclass:
+ pandas/core/arrays/sparse/array.py:1140: note:          def searchsorted(self, v: ExtensionArray | ndarray[Untyped, Untyped] | object, side: 'left' | 'right' = ..., sorter: Any | None | None = ...) -> ndarray[Any, dtype[signedinteger[Any]]] | signedinteger[Any]
+ pandas/core/strings/accessor.py:2729: error: Argument "columns" to "DataFrame" has incompatible type "list[Hashable]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/strings/accessor.py:2743: error: Argument "columns" to "DataFrame" has incompatible type "list[Hashable]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/io/stata.py:1712: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/io/stata.py:1758: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/io/parsers/base_parser.py:562: error: Argument 2 to "isin" has incompatible type "list[Any (unannotated)]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range"  [arg-type]
+ pandas/io/parsers/base_parser.py:562: note: Following member(s) of "list[Any (unannotated)]" have conflicts:
+ pandas/io/parsers/base_parser.py:562: note:     Expected:
+ pandas/io/parsers/base_parser.py:562: note:         def index(self, Any, /, start: int = ..., stop: int = ...) -> int
+ pandas/io/parsers/base_parser.py:562: note:     Got:
+ pandas/io/parsers/base_parser.py:562: note:         def index(self, Any (unannotated), SupportsIndex = ..., SupportsIndex = ..., /) -> int
+ pandas/io/json/_table_schema.py:364: error: Argument "columns" to "DataFrame" has incompatible type "list[Any]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/io/formats/format.py:724: error: Conversion of type "bool | pandas._typing.SequenceNotStr[str]" to type "list[str]" may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to "object" first.  [bad-cast]
+ pandas/io/formats/format.py:724: error: Incompatible types in assignment (expression has type "list[str]", variable has type "bool | SequenceNotStr[str]")  [assignment]
+ pandas/io/formats/format.py:725: error: Argument 1 to "len" has incompatible type "bool | SequenceNotStr[str]"; expected "Sized"  [arg-type]
+ pandas/io/formats/format.py:728: error: Argument 1 to "len" has incompatible type "bool | SequenceNotStr[str]"; expected "Sized"  [arg-type]
+ pandas/io/formats/format.py:730: error: Item "bool" of "bool | SequenceNotStr[str]" has no attribute "__iter__" (not iterable)  [union-attr]
+ pandas/io/excel/_base.py:1258: error: Conversion of type "str | os.PathLike[str] | pandas._typing.WriteExcelBuffer" to type "typing.IO[bytes]" may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to "object" first.  [bad-cast]
+ pandas/core/generic.py:775: error: Argument 1 to "ensure_index" has incompatible type "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | list[Untyped]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range"  [arg-type]
+ pandas/core/generic.py:3933: error: Argument "header" to "DataFrameFormatter" has incompatible type "bool | list[str]"; expected "bool | SequenceNotStr[str]"  [arg-type]
+ pandas/core/frame.py:1855: error: Argument "index" to "DataFrame" has incompatible type "list[Any (from omitted generics)] | None"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/frame.py:1869: error: Argument "index" to "DataFrame" has incompatible type "list[Any (from omitted generics)] | None"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/core/frame.py:2410: error: Argument 1 to "ensure_index" has incompatible type "list[Any]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range"  [arg-type]
+ pandas/core/frame.py:2410: note: Following member(s) of "list[Any]" have conflicts:
+ pandas/core/frame.py:2410: note:     Expected:
+ pandas/core/frame.py:2410: note:         def index(self, Any, /, start: int = ..., stop: int = ...) -> int
+ pandas/core/frame.py:2410: note:     Got:
+ pandas/core/frame.py:2410: note:         def index(self, Any, SupportsIndex = ..., SupportsIndex = ..., /) -> int
+ pandas/core/frame.py:10793: note:     def [_T] __init__(self) -> list[_T@list]
+ pandas/core/frame.py:10793: note:     def [_T] __init__(self, Iterable[_T@list], /) -> list[_T@list]
+ pandas/core/internals/construction.py:826: error: Argument 1 to "ensure_index" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range"  [arg-type]
+ pandas/core/internals/construction.py:826: note: Following member(s) of "list[Never]" have conflicts:
+ pandas/core/internals/construction.py:826: note:     Expected:
+ pandas/core/internals/construction.py:826: note:         def index(self, Any, /, start: int = ..., stop: int = ...) -> int
+ pandas/core/internals/construction.py:826: note:     Got:
+ pandas/core/internals/construction.py:826: note:         def index(self, Never, SupportsIndex = ..., SupportsIndex = ..., /) -> int
+ pandas/core/internals/construction.py:918: error: Argument 1 to "ensure_index" has incompatible type "list[Untyped]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range"  [arg-type]
+ pandas/core/internals/construction.py:918: note: Following member(s) of "list[Untyped]" have conflicts:
+ pandas/core/internals/construction.py:918: note:     Expected:
+ pandas/core/internals/construction.py:918: note:         def index(self, Any, /, start: int = ..., stop: int = ...) -> int
+ pandas/core/internals/construction.py:918: note:     Got:
+ pandas/core/internals/construction.py:918: note:         def index(self, Untyped, SupportsIndex = ..., SupportsIndex = ..., /) -> int
+ pandas/core/indexes/range.py:898: error: Signature of "_concat" incompatible with supertype "Index"  [override]
+ pandas/core/indexes/range.py:898: note:      Superclass:
+ pandas/core/indexes/range.py:898: note:          def _concat(self, to_concat: list[Index], name: Hashable) -> Index
+ pandas/core/indexes/range.py:898: note:      Subclass:
+ pandas/core/indexes/range.py:898: note:          def _concat(self, indexes: list[Index], name: Hashable) -> Index
+ pandas/core/indexes/multi.py:128: error: Definition of "get_indexer" in base class "BaseMultiIndexCodesEngine" is incompatible with definition in base class "IndexEngine"  [misc]
+ pandas/core/indexes/multi.py:167: error: Definition of "get_indexer" in base class "BaseMultiIndexCodesEngine" is incompatible with definition in base class "IndexEngine"  [misc]
+ pandas/core/indexes/multi.py:1573: error: Signature of "_set_names" incompatible with supertype "Index"  [override]
+ pandas/core/indexes/multi.py:1573: note:      Superclass:
+ pandas/core/indexes/multi.py:1573: note:          def _set_names(self, values: Untyped, *, level: Untyped = ...) -> None
+ pandas/core/indexes/multi.py:1573: note:      Subclass:
+ pandas/core/indexes/multi.py:1573: note:          def _set_names(self, names: Untyped, *, level: Untyped = ..., validate: bool = ...) -> None
+ pandas/core/indexes/category.py:411: error: Signature of "_maybe_cast_listlike_indexer" incompatible with supertype "Index"  [override]
+ pandas/core/indexes/category.py:411: note:      Superclass:
+ pandas/core/indexes/category.py:411: note:          def _maybe_cast_listlike_indexer(self, target: Untyped) -> Index
+ pandas/core/indexes/category.py:411: note:      Subclass:
+ pandas/core/indexes/category.py:411: note:          def _maybe_cast_listlike_indexer(self, values: Untyped) -> CategoricalIndex
+ pandas/core/indexes/base.py:7517: error: Incompatible types in assignment (expression has type "list[Untyped | int]", variable has type "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range")  [assignment]
+ pandas/core/resample.py:1795: error: Signature of "_upsample" incompatible with supertype "Resampler"  [override]
+ pandas/core/resample.py:1795: note:      Superclass:
+ pandas/core/resample.py:1795: note:          def _upsample(self, f: Untyped, limit: int | None = ..., fill_value: Untyped = ...) -> None
+ pandas/core/resample.py:1795: note:      Subclass:
+ pandas/core/resample.py:1795: note:          def _upsample(self, method: Untyped, limit: int | None = ..., fill_value: Untyped = ...) -> None
+ pandas/core/resample.py:1943: error: Signature of "_upsample" incompatible with supertype "Resampler"  [override]
+ pandas/core/resample.py:1943: note:      Superclass:
+ pandas/core/resample.py:1943: note:          def _upsample(self, f: Untyped, limit: int | None = ..., fill_value: Untyped = ...) -> None
+ pandas/core/resample.py:1943: note:      Subclass:
+ pandas/core/resample.py:1943: note:          def _upsample(self, method: Untyped, limit: int | None = ..., fill_value: Untyped = ...) -> None
+ pandas/io/sas/sas7bdat.py:742: error: Argument "columns" to "DataFrame" has incompatible type "list[str | bytes]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:19: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:20: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:21: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:22: error: Argument "columns" to "DataFrame" has incompatible type "list[float | int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:23: error: Argument "columns" to "DataFrame" has incompatible type "list[float | int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:24: error: Argument "columns" to "DataFrame" has incompatible type "list[str | int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:25: error: Argument "columns" to "DataFrame" has incompatible type "list[int | float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:26: error: Argument "columns" to "DataFrame" has incompatible type "list[int | float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/window/test_pairwise.py:27: error: Argument "columns" to "DataFrame" has incompatible type "list[float | str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2151: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2152: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2156: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2161: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2167: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2174: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2182: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/reshape/merge/test_merge.py:2190: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/test_compression.py:27: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/test_compression.py:50: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/test_compression.py:243: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/test_compression.py:264: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/test_compression.py:286: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_skiprows.py:110: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_skiprows.py:116: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_skiprows.py:126: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:798: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:799: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:809: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:810: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:820: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:821: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:831: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:832: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:842: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:843: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:853: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_read_fwf.py:854: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:57: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:62: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:69: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:89: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:97: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_mangle_dupes.py:108: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/usecols/test_usecols_basic.py:264: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/usecols/test_usecols_basic.py:268: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/dtypes/test_empty.py:135: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/dtypes/test_empty.py:144: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_ints.py:43: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_ints.py:50: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_ints.py:56: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_ints.py:61: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_index.py:48: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_index.py:77: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_index.py:150: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:447: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:447: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:452: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:625: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:626: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_common_basic.py:631: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/test_to_html.py:243: error: Argument "columns" to "DataFrame" has incompatible type "list[str | None]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_tooltip.py:29: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_tooltip.py:30: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_tooltip.py:33: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_tooltip.py:33: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_to_latex.py:1070: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1263: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1264: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1266: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1266: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1267: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_style.py:1267: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:214: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:214: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:217: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:217: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:220: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:220: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:223: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:223: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:226: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:226: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:266: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:266: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:267: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/formats/style/test_matplotlib.py:267: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/groupby/test_apply.py:174: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/groupby/aggregate/test_numba.py:231: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/groupby/aggregate/test_numba.py:237: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/groupby/aggregate/test_numba.py:243: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/groupby/aggregate/test_numba.py:249: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_finalize.py:78: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:155: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:172: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:175: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:183: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:186: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:192: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:193: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:255: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/generic/test_duplicate_labels.py:256: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_api.py:196: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_api.py:197: error: Argument "columns" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_to_csv.py:966: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_to_csv.py:967: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_to_csv.py:972: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_to_csv.py:973: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_to_csv.py:977: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_rank.py:482: error: Argument "columns" to "DataFrame" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_map.py:88: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_map.py:89: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:75: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:76: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:80: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:85: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:90: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:95: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:102: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_join.py:110: error: Argument "index" to "DataFrame" has incompatible type "list[int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop_duplicates.py:202: error: Argument "columns" to "DataFrame" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop_duplicates.py:203: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop_duplicates.py:204: error: Argument "index" to "DataFrame" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop_duplicates.py:205: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop.py:240: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop.py:241: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop.py:242: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/methods/test_drop.py:243: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_get.py:21: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_get.py:22: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1385: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1390: error: Argument "columns" to "DataFrame" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1396: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1406: error: Argument "columns" to "DataFrame" has incompatible type "list[Never]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1460: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/test_parse_dates.py:1512: error: Argument "columns" to "DataFrame" has incompatible type "list[str | int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:126: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:133: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:140: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:147: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:154: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:161: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:168: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/parser/common/test_file_buffer_url.py:175: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1523: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1527: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1532: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1532: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1559: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1560: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1563: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/json/test_pandas.py:1563: error: Argument "index" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/io/excel/test_readers.py:700: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:892: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:900: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:907: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:915: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:923: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:928: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/indexing/test_loc.py:930: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_reductions.py:332: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_constructors.py:2183: error: Argument "index" to "DataFrame" has incompatible type "list[int | float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_constructors.py:2184: error: Argument "columns" to "DataFrame" has incompatible type "list[float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_constructors.py:2185: error: Argument "columns" to "DataFrame" has incompatible type "list[float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_constructors.py:2187: error: Argument "columns" to "DataFrame" has incompatible type "list[float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_constructors.py:2189: error: Argument "columns" to "DataFrame" has incompatible type "list[float | int]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_arithmetic.py:1953: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/test_arithmetic.py:1954: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:600: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:608: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:614: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:621: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:629: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:634: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/frame/indexing/test_setitem.py:636: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:872: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:873: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:874: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:877: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:878: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/arithmetic/test_numeric.py:879: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:696: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:701: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:784: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:785: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:789: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:794: error: Argument "index" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:799: error: Argument "columns" to "DataFrame" has incompatible type "list[list[str]]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/apply/test_frame_apply.py:804: error: Argument 2 to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/plotting/test_series.py:689: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/plotting/test_series.py:712: error: Argument "columns" to "DataFrame" has incompatible type "list[str]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/plotting/frame/test_frame.py:417: error: Argument "index" to "DataFrame" has incompatible type "list[float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/plotting/frame/test_frame.py:420: error: Argument "index" to "DataFrame" has incompatible type "list[float]"; expected "ExtensionArray | ndarray[Untyped, Untyped] | Index | Series | SequenceNotStr[Untyped] | range | None"  [arg-type]
+ pandas/tests/extension/test_period.py:83: error: Signature of "_supports_reduction" incompatible with supertype "BaseReduceTests"  [override]
+ pandas/tests/extension/test_period.py:83: note:      Superclass:
+ pandas/tests/extension/test_period.py:83: note:          def _supports_reduction(self, ser: Series, op_name: str) -> bool
+ pandas/tests/extension/test_period.py:83: note:      Subclass:
+ pandas/tests/extension/test_period.py:83: note:          def _supports_reduction(self, obj: Untyped, op_name: str) -> bool
+ pandas/tests/extension/test_datetime.py:94: error: Signature of "_supports_reduction" incompatible with supertype "BaseReduceTests"  [override]
+ pandas/tests/extension/test_datetime.py:94: note:      Superclass:
+ pandas/tests/extension/test_datetime.py:94: note:          def _supports_reduction(self, ser: Series, op_name: str) -> bool
+ pandas/tests/extension/test_datetime.py:94: note:      Subclass:
+ pandas/tests/extension/test_datetime.py:94: note:          def _supports_reduction(self, obj: Untyped, op_name: str) -> bool

alectryon (https://github.com/cpitclaudel/alectryon)
+ alectryon/markers.py:54:5: error: Signature of "match" incompatible with supertype "Matcher"  [override]
+ alectryon/markers.py:54:5: note:      Superclass:
+ alectryon/markers.py:54:5: note:          def match(self, other: Untyped) -> None
+ alectryon/markers.py:54:5: note:      Subclass:
+ alectryon/markers.py:54:5: note:          def match(self, _: Untyped) -> None

scikit-learn (https://github.com/scikit-learn/scikit-learn)
+ sklearn/linear_model/_ridge.py:1584:5: error: Signature of "decision_function" incompatible with supertype "LinearClassifierMixin"  [override]
+ sklearn/linear_model/_ridge.py:1584:5: note:      Superclass:
+ sklearn/linear_model/_ridge.py:1584:5: note:          def decision_function(self, X: Untyped) -> None
+ sklearn/linear_model/_ridge.py:1584:5: note:      Subclass:
+ sklearn/linear_model/_ridge.py:1584:5: note:          def decision_function(self, y_predict: Untyped) -> None
+ sklearn/compose/tests/test_target.py:370:5: error: Signature of "predict" incompatible with supertype "DummyRegressor"  [override]
+ sklearn/compose/tests/test_target.py:370:5: note:      Superclass:
+ sklearn/compose/tests/test_target.py:370:5: note:          def predict(self, X: Untyped, return_std: bool = ...) -> None
+ sklearn/compose/tests/test_target.py:370:5: note:      Subclass:
+ sklearn/compose/tests/test_target.py:370:5: note:          def predict(self, X: Untyped, check_input: bool = ...) -> None
+ sklearn/utils/tests/test_parallel.py:70:9: error: Signature of "transform" incompatible with supertype "StandardScaler"  [override]
+ sklearn/utils/tests/test_parallel.py:70:9: note:      Superclass:
+ sklearn/utils/tests/test_parallel.py:70:9: note:          def transform(self, X: Untyped, copy: Untyped = ...) -> None
+ sklearn/utils/tests/test_parallel.py:70:9: note:      Subclass:
+ sklearn/utils/tests/test_parallel.py:70:9: note:          def transform(self, X: Untyped, y: Untyped = ...) -> None
+ sklearn/model_selection/tests/test_search.py:1892:9: error: Signature of "_run_search" incompatible with supertype "BaseSearchCV"  [override]
+ sklearn/model_selection/tests/test_search.py:1892:9: note:      Superclass:
+ sklearn/model_selection/tests/test_search.py:1892:9: note:          def _run_search(self, evaluate_candidates: Untyped) -> None
+ sklearn/model_selection/tests/test_search.py:1892:9: note:      Subclass:
+ sklearn/model_selection/tests/test_search.py:1892:9: note:          def _run_search(self, evaluate: Untyped) -> None
+ sklearn/feature_selection/tests/test_rfe.py:126:9: error: Signature of "score" incompatible with supertype "ClassifierMixin"  [override]
+ sklearn/feature_selection/tests/test_rfe.py:126:9: note:      Superclass:
+ sklearn/feature_selection/tests/test_rfe.py:126:9: note:          def score(self, X: Untyped, y: Untyped, sample_weight: Untyped = ...) -> None
+ sklearn/feature_selection/tests/test_rfe.py:126:9: note:      Subclass:
+ sklearn/feature_selection/tests/test_rfe.py:126:9: note:          def score(self, X: Untyped, y: Untyped, prop: Untyped = ...) -> None

kornia (https://github.com/kornia/kornia)
+ kornia/geometry/keypoints.py:179:5: error: Signature of "from_tensor" incompatible with supertype "Keypoints"  [override]
+ kornia/geometry/keypoints.py:179:5: note:      Superclass:
+ kornia/geometry/keypoints.py:179:5: note:          @classmethod
+ kornia/geometry/keypoints.py:179:5: note:          def from_tensor(cls, keypoints: Any (from unimported type)) -> Keypoints
+ kornia/geometry/keypoints.py:179:5: note:      Subclass:
+ kornia/geometry/keypoints.py:179:5: note:          @classmethod
+ kornia/geometry/keypoints.py:179:5: note:          def from_tensor(cls, boxes: Any (from unimported type) | list[Any (from unimported type)], validate_boxes: bool = ...) -> VideoKeypoints
+ kornia/augmentation/base.py:451:5: error: Signature of "apply_func" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/base.py:451:5: note:      Superclass:
+ kornia/augmentation/base.py:451:5: note:          def apply_func(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/base.py:451:5: note:      Subclass:
+ kornia/augmentation/base.py:451:5: note:          def apply_func(self, in_tensor: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_3d/base.py:106:5: error: Signature of "apply_func" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_3d/base.py:106:5: note:      Superclass:
+ kornia/augmentation/_3d/base.py:106:5: note:          def apply_func(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_3d/base.py:106:5: note:      Subclass:
+ kornia/augmentation/_3d/base.py:106:5: note:          def apply_func(self, in_tensor: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/base.py:118:5: error: Signature of "apply_func" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_2d/base.py:118:5: note:      Superclass:
+ kornia/augmentation/_2d/base.py:118:5: note:          def apply_func(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/base.py:118:5: note:      Subclass:
+ kornia/augmentation/_2d/base.py:118:5: note:          def apply_func(self, in_tensor: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any] | None = ...) -> Any (from unimported type)
- kornia/augmentation/_2d/mix/transplantation.py: note: At top level:
- kornia/augmentation/_2d/mix/transplantation.py:176: error: Unused "type: ignore" comment  [unused-ignore]
- kornia/augmentation/_2d/mix/transplantation.py: note: At top level:
- kornia/augmentation/_2d/mix/transplantation.py:182: error: Unused "type: ignore" comment  [unused-ignore]
+ kornia/augmentation/_2d/mix/mosaic.py:198:5: error: Signature of "apply_transform" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/mosaic.py:198:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/mosaic.py:198:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mosaic.py:198:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/mosaic.py:198:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:89:5: error: Signature of "apply_transform" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/mixup.py:89:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/mixup.py:89:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:89:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/mixup.py:89:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:98:5: error: Signature of "apply_non_transform_class" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/mixup.py:98:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/mixup.py:98:5: note:          def apply_non_transform_class(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:98:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/mixup.py:98:5: note:          def apply_non_transform_class(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:111:5: error: Signature of "apply_transform_class" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/mixup.py:111:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/mixup.py:111:5: note:          def apply_transform_class(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/mixup.py:111:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/mixup.py:111:5: note:          def apply_transform_class(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/jigsaw.py:54:5: error: Signature of "apply_transform" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/jigsaw.py:54:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/jigsaw.py:54:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/jigsaw.py:54:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/jigsaw.py:54:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/cutmix.py:123:5: error: Signature of "apply_transform" incompatible with supertype "MixAugmentationBaseV2"  [override]
+ kornia/augmentation/_2d/mix/cutmix.py:123:5: note:      Superclass:
+ kornia/augmentation/_2d/mix/cutmix.py:123:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/mix/cutmix.py:123:5: note:      Subclass:
+ kornia/augmentation/_2d/mix/cutmix.py:123:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], maybe_flags: dict[str, Any] | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/geometric/thin_plate_spline.py:52:5: error: Signature of "generate_parameters" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_2d/geometric/thin_plate_spline.py:52:5: note:      Superclass:
+ kornia/augmentation/_2d/geometric/thin_plate_spline.py:52:5: note:          def generate_parameters(self, batch_shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/geometric/thin_plate_spline.py:52:5: note:      Subclass:
+ kornia/augmentation/_2d/geometric/thin_plate_spline.py:52:5: note:          def generate_parameters(self, shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/geometric/elastic_transform.py:71:5: error: Signature of "generate_parameters" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_2d/geometric/elastic_transform.py:71:5: note:      Superclass:
+ kornia/augmentation/_2d/geometric/elastic_transform.py:71:5: note:          def generate_parameters(self, batch_shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/geometric/elastic_transform.py:71:5: note:      Subclass:
+ kornia/augmentation/_2d/geometric/elastic_transform.py:71:5: note:          def generate_parameters(self, shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/intensity/random_rgb_shift.py:92:5: error: Signature of "apply_transform" incompatible with supertype "_AugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/random_rgb_shift.py:92:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/random_rgb_shift.py:92:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/random_rgb_shift.py:92:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/random_rgb_shift.py:92:5: note:          def apply_transform(self, inp: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/random_rain.py:49:5: error: Signature of "apply_transform" incompatible with supertype "_AugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/random_rain.py:49:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/random_rain.py:49:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/random_rain.py:49:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/random_rain.py:49:5: note:          def apply_transform(self, image: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:50:5: error: Signature of "apply_transform" incompatible with supertype "_AugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/plasma.py:50:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/plasma.py:50:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:50:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/plasma.py:50:5: note:          def apply_transform(self, image: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:98:5: error: Signature of "apply_transform" incompatible with supertype "_AugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/plasma.py:98:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/plasma.py:98:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:98:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/plasma.py:98:5: note:          def apply_transform(self, image: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:152:5: error: Signature of "apply_transform" incompatible with supertype "_AugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/plasma.py:152:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/plasma.py:152:5: note:          def apply_transform(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/plasma.py:152:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/plasma.py:152:5: note:          def apply_transform(self, image: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any], transform: Any (from unimported type) | None = ...) -> Any (from unimported type)
+ kornia/augmentation/_2d/intensity/gaussian_noise.py:50:5: error: Signature of "generate_parameters" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/gaussian_noise.py:50:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/gaussian_noise.py:50:5: note:          def generate_parameters(self, batch_shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/intensity/gaussian_noise.py:50:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/gaussian_noise.py:50:5: note:          def generate_parameters(self, shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/intensity/channel_shuffle.py:40:5: error: Signature of "generate_parameters" incompatible with supertype "_BasicAugmentationBase"  [override]
+ kornia/augmentation/_2d/intensity/channel_shuffle.py:40:5: note:      Superclass:
+ kornia/augmentation/_2d/intensity/channel_shuffle.py:40:5: note:          def generate_parameters(self, batch_shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/intensity/channel_shuffle.py:40:5: note:      Subclass:
+ kornia/augmentation/_2d/intensity/channel_shuffle.py:40:5: note:          def generate_parameters(self, shape: tuple[int, ...]) -> dict[str, Any (from unimported type)]
+ kornia/augmentation/_2d/geometric/pad.py:56:5: error: Signature of "compute_transformation" incompatible with supertype "RigidAffineAugmentationBase2D"  [override]
+ kornia/augmentation/_2d/geometric/pad.py:56:5: note:      Superclass:
+ kornia/augmentation/_2d/geometric/pad.py:56:5: note:          def compute_transformation(self, input: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)
+ kornia/augmentation/_2d/geometric/pad.py:56:5: note:      Subclass:
+ kornia/augmentation/_2d/geometric/pad.py:56:5: note:          def compute_transformation(self, image: Any (from unimported type), params: dict[str, Any (from unimported type)], flags: dict[str, Any]) -> Any (from unimported type)

python-htmlgen (https://github.com/srittau/python-htmlgen)
+ test_htmlgen/document.py:33:5: error: Signature of "add_stylesheet" incompatible with supertype "Head"  [override]
+ test_htmlgen/document.py:33:5: note:      Superclass:
+ test_htmlgen/document.py:33:5: note:          def add_stylesheet(self, stylesheet: str) -> None
+ test_htmlgen/document.py:33:5: note:      Subclass:
+ test_htmlgen/document.py:33:5: note:          def add_stylesheet(self, style: Untyped) -> None

paasta (https://github.com/yelp/paasta)
+ stubs/marathon/models/constraint.pyi:15:5: error: Signature of "from_json" incompatible with supertype "MarathonObject"  [override]
+ stubs/marathon/models/constraint.pyi:15:5: note:      Superclass:
+ stubs/marathon/models/constraint.pyi:15:5: note:          @classmethod
+ stubs/marathon/models/constraint.pyi:15:5: note:          def from_json(cls, attributes: Untyped) -> None
+ stubs/marathon/models/constraint.pyi:15:5: note:      Subclass:
+ stubs/marathon/models/constraint.pyi:15:5: note:          @classmethod
+ stubs/marathon/models/constraint.pyi:15:5: note:          def from_json(cls, obj: Untyped) -> None
+ stubs/marathon/util.pyi:11:5: error: Signature of "default" incompatible with supertype "JSONEncoder"  [override]
+ stubs/marathon/util.pyi:11:5: note:      Superclass:
+ stubs/marathon/util.pyi:11:5: note:          def default(self, o: Any) -> Any
+ stubs/marathon/util.pyi:11:5: note:      Subclass:
+ stubs/marathon/util.pyi:11:5: note:          def default(self, obj: Untyped) -> None
+ stubs/marathon/util.pyi:14:5: error: Signature of "default" incompatible with supertype "JSONEncoder"  [override]
+ stubs/marathon/util.pyi:14:5: note:      Superclass:
+ stubs/marathon/util.pyi:14:5: note:          def default(self, o: Any) -> Any
+ stubs/marathon/util.pyi:14:5: note:      Subclass:
+ stubs/marathon/util.pyi:14:5: note:          def default(self, obj: Untyped) -> None
+ paasta_tools/tron_tools.py:180:5: error: Signature of "get_value" incompatible with supertype "Formatter"  [override]
+ paasta_tools/tron_tools.py:180:5: note:      Superclass:
+ paasta_tools/tron_tools.py:180:5: note:          def get_value(self, key: int | str, args: Sequence[Any], kwargs: Mapping[str, Any]) -> Any
+ paasta_tools/tron_tools.py:180:5: note:      Subclass:
+ paasta_tools/tron_tools.py:180:5: note:          def get_value(self, key: Untyped, args: Untyped, kwds: Untyped) -> None

bokeh (https://github.com/bokeh/bokeh)
+ src/bokeh/core/json_encoder.py:184:5: error: Signature of "default" incompatible with supertype "JSONEncoder"  [override]
+ src/bokeh/core/json_encoder.py:184:5: note:      Superclass:
+ src/bokeh/core/json_encoder.py:184:5: note:          def default(self, o: Any) -> Any
+ src/bokeh/core/json_encoder.py:184:5: note:      Subclass:
+ src/bokeh/core/json_encoder.py:184:5: note:          def default(self, obj: Any) -> Any
+ src/bokeh/core/property/include.py:61:5: error: Signature of "make_descriptors" incompatible with supertype "PropertyDescriptorFactory"  [override]
+ src/bokeh/core/property/include.py:61:5: note:      Superclass:
+ src/bokeh/core/property/include.py:61:5: note:          def make_descriptors(self, name: str) -> list[PropertyDescriptor[T@Include]]
+ src/bokeh/core/property/include.py:61:5: note:      Subclass:
+ src/bokeh/core/property/include.py:61:5: note:          def make_descriptors(self, _base_name: str) -> list[PropertyDescriptor[T@Include]]

aiohttp (https://github.com/aio-libs/aiohttp)
+ aiohttp/resolver.py:29:5: error: Signature of "resolve" incompatible with supertype "AbstractResolver"  [override]
+ aiohttp/resolver.py:29:5: note:      Superclass:
+ aiohttp/resolver.py:29:5: note:          def resolve(self, host: str, port: int, family: int) -> Coroutine[Any, Any, list[dict[str, Any]]]
+ aiohttp/resolver.py:29:5: note:      Subclass:
+ aiohttp/resolver.py:29:5: note:          def resolve(self, hostname: str, port: int = ..., family: int = ...) -> Coroutine[Any, Any, list[dict[str, Any]]]
+ aiohttp/streams.py:523:5: error: Signature of "feed_data" incompatible with supertype "StreamReader"  [override]
+ aiohttp/streams.py:523:5: note:      Superclass:
+ aiohttp/streams.py:523:5: note:          def feed_data(self, data: bytes, size: int = ...) -> None
+ aiohttp/streams.py:523:5: note:      Subclass:
+ aiohttp/streams.py:523:5: note:          def feed_data(self, data: bytes, n: int = ...) -> None
+ aiohttp/web_urldispatcher.py:511:5: error: Signature of "raw_match" incompatible with supertype "AbstractResource"  [override]
+ aiohttp/web_urldispatcher.py:511:5: note:      Superclass:
+ aiohttp/web_urldispatcher.py:511:5: note:          def raw_match(self, path: str) -> bool
+ aiohttp/web_urldispatcher.py:511:5: note:      Subclass:
+ aiohttp/web_urldispatcher.py:511:5: note:          def raw_match(self, prefix: str) -> bool

cloud-init (https://github.com/canonical/cloud-init)
+ cloudinit/mergers/__init__.py:62:5: error: Signature of "_handle_unknown" incompatible with supertype "UnknownMerger"  [override]
+ cloudinit/mergers/__init__.py:62:5: note:      Superclass:
+ cloudinit/mergers/__init__.py:62:5: note:          def _handle_unknown(self, _meth_wanted: Untyped, value: Untyped, _merge_with: Untyped) -> None
+ cloudinit/mergers/__init__.py:62:5: note:      Subclass:
+ cloudinit/mergers/__init__.py:62:5: note:          def _handle_unknown(self, meth_wanted: Untyped, value: Untyped, merge_with: Untyped) -> None
+ cloudinit/distros/gentoo.py:43:5: error: Signature of "apply_locale" incompatible with supertype "Distro"  [override]
+ cloudinit/distros/gentoo.py:43:5: note:      Superclass:
+ cloudinit/distros/gentoo.py:43:5: note:          def apply_locale(self, locale: Untyped, out_fn: Untyped = ...) -> None
+ cloudinit/distros/gentoo.py:43:5: note:      Subclass:
+ cloudinit/distros/gentoo.py:43:5: note:          def apply_locale(self, _: Untyped, out_fn: Untyped = ...) -> None
+ cloudinit/sources/DataSourceSmartOS.py:336:5: error: Signature of "device_name_to_device" incompatible with supertype "DataSource"  [override]
+ cloudinit/sources/DataSourceSmartOS.py:336:5: note:      Superclass:
+ cloudinit/sources/DataSourceSmartOS.py:336:5: note:          def device_name_to_device(self, _name: Untyped) -> None
+ cloudinit/sources/DataSourceSmartOS.py:336:5: note:      Subclass:
+ cloudinit/sources/DataSourceSmartOS.py:336:5: note:          def device_name_to_device(self, name: Untyped) -> None
+ cloudinit/sources/DataSourceEc2.py:387:5: error: Signature of "device_name_to_device" incompatible with supertype "DataSource"  [override]
+ cloudinit/sources/DataSourceEc2.py:387:5: note:      Superclass:
+ cloudinit/sources/DataSourceEc2.py:387:5: note:          def device_name_to_device(self, _name: Untyped) -> None
+ cloudinit/sources/DataSourceEc2.py:387:5: note:      Subclass:
+ cloudinit/sources/DataSourceEc2.py:387:5: note:          def device_name_to_device(self, name: Untyped) -> None
+ cloudinit/sources/DataSourceOpenStack.py: note: In class "DataSourceOpenStack":
+ cloudinit/sources/DataSourceOpenStack.py:43:1: error: Definition of "device_name_to_device" in base class "SourceMixin" is incompatible with definition in base class "DataSource"  [misc]
+ cloudinit/sources/DataSourceAzure.py:907:5: error: Signature of "device_name_to_device" incompatible with supertype "DataSource"  [override]
+ cloudinit/sources/DataSourceAzure.py:907:5: note:      Superclass:
+ cloudinit/sources/DataSourceAzure.py:907:5: note:          def device_name_to_device(self, _name: Untyped) -> None
+ cloudinit/sources/DataSourceAzure.py:907:5: note:      Subclass:
+ cloudinit/sources/DataSourceAzure.py:907:5: note:          def device_name_to_device(self, name: Untyped) -> None
+ cloudinit/sources/DataSourceConfigDrive.py: note: In class "DataSourceConfigDrive":
+ cloudinit/sources/DataSourceConfigDrive.py:34:1: error: Definition of "device_name_to_device" in base class "SourceMixin" is incompatible with definition in base class "DataSource"  [misc]

asynq (https://github.com/quora/asynq)
+ asynq/debug.pyi:30:5: error: Signature of "formatException" incompatible with supertype "Formatter"  [override]
+ asynq/debug.pyi:30:5: note:      Superclass:
+ asynq/debug.pyi:30:5: note:          def formatException(self, ei: (type[BaseException], BaseException, TracebackType | None) | (None, None, None)) -> str
+ asynq/debug.pyi:30:5: note:      Subclass:
+ asynq/debug.pyi:30:5: note:          def formatException(self, exc_info: (type, BaseException, TracebackType | None) | (None, None, None)) -> str

ibis (https://github.com/ibis-project/ibis)
+ ibis/common/patterns.py:1090:5: error: Signature of "match" incompatible with supertype "Pattern"  [override]
+ ibis/common/patterns.py:1090:5: note:      Superclass:
+ ibis/common/patterns.py:1090:5: note:          def match(self, value: Any, context: dict[str, Any]) -> Any
+ ibis/common/patterns.py:1090:5: note:      Subclass:
+ ibis/common/patterns.py:1090:5: note:          def match(self, values: Untyped, context: Untyped) -> None
+ ibis/common/patterns.py:1143:5: error: Signature of "match" incompatible with supertype "Pattern"  [override]
+ ibis/common/patterns.py:1143:5: note:      Superclass:
+ ibis/common/patterns.py:1143:5: note:          def match(self, value: Any, context: dict[str, Any]) -> Any
+ ibis/common/patterns.py:1143:5: note:      Subclass:
+ ibis/common/patterns.py:1143:5: note:          def match(self, values: Untyped, context: Untyped) -> None
+ ibis/common/patterns.py:1372:5: error: Signature of "match" incompatible with supertype "Pattern"  [override]
+ ibis/common/patterns.py:1372:5: note:      Superclass:
+ ibis/common/patterns.py:1372:5: note:          def match(self, value: Any, context: dict[str, Any]) -> Any
+ ibis/common/patterns.py:1372:5: note:      Subclass:
+ ibis/common/patterns.py:1372:5: note:          def match(self, values: Untyped, context: Untyped) -> None
+ ibis/common/patterns.py:1401:5: error: Signature of "match" incompatible with supertype "Pattern"  [override]
+ ibis/common/patterns.py:1401:5: note:      Superclass:
+ ibis/common/patterns.py:1401:5: note:          def match(self, value: Any, context: dict[str, Any]) -> Any
+ ibis/common/patterns.py:1401:5: note:      Subclass:
+ ibis/common/patterns.py:1401:5: note:          def match(self, values: Untyped, context: Untyped) -> None
+ ibis/common/patterns.py:1450:5: error: Signature of "match" incompatible with supertype "Pattern"  [override]
+ ibis/common/patterns.py:1450:5: note:      Superclass:
+ ibis/common/patterns.py:1450:5: note:          def match(self, value: Any, context: dict[str, Any]) -> Any
+ ibis/common/patterns.py:1450:5: note:      Subclass:
+ ibis/common/patterns.py:1450:5: note:          def match(self, values: Untyped, context: Untyped) -> None
+ ibis/common/grounds.py: note: In class "Concrete":
+ ibis/common/grounds.py:186:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:89:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:448:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:456:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:504:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:517:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:531:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:553:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:561:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:569:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:647:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:737:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:813:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:873:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/datatypes/core.py:891:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/schema.py:19:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/formats/pyarrow.py:177:5: error: Signature of "to_ibis" incompatible with supertype "SchemaMapper"  [override]
+ ibis/formats/pyarrow.py:177:5: note:      Superclass:
+ ibis/formats/pyarrow.py:177:5: note:          @classmethod
+ ibis/formats/pyarrow.py:177:5: note:          def to_ibis(cls, obj: Untyped) -> Schema
+ ibis/formats/pyarrow.py:177:5: note:      Subclass:
+ ibis/formats/pyarrow.py:177:5: note:          @classmethod
+ ibis/formats/pyarrow.py:177:5: note:          def to_ibis(cls, schema: Any (from unimported type)) -> Schema
+ ibis/formats/pyarrow.py:185:5: error: Signature of "infer_scalar" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:185:5: note:      Superclass:
+ ibis/formats/pyarrow.py:185:5: note:          @classmethod
+ ibis/formats/pyarrow.py:185:5: note:          def infer_scalar(cls, obj: Untyped) -> DataType
+ ibis/formats/pyarrow.py:185:5: note:      Subclass:
+ ibis/formats/pyarrow.py:185:5: note:          @classmethod
+ ibis/formats/pyarrow.py:185:5: note:          def infer_scalar(cls, scalar: Any) -> DataType
+ ibis/formats/pyarrow.py:190:5: error: Signature of "infer_column" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:190:5: note:      Superclass:
+ ibis/formats/pyarrow.py:190:5: note:          @classmethod
+ ibis/formats/pyarrow.py:190:5: note:          def infer_column(cls, obj: Untyped) -> DataType
+ ibis/formats/pyarrow.py:190:5: note:      Subclass:
+ ibis/formats/pyarrow.py:190:5: note:          @classmethod
+ ibis/formats/pyarrow.py:190:5: note:          def infer_column(cls, column: Sequence[Untyped]) -> DataType
+ ibis/formats/pyarrow.py:214:5: error: Signature of "infer_table" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:214:5: note:      Superclass:
+ ibis/formats/pyarrow.py:214:5: note:          @classmethod
+ ibis/formats/pyarrow.py:214:5: note:          def infer_table(cls, obj: Untyped) -> Schema
+ ibis/formats/pyarrow.py:214:5: note:      Subclass:
+ ibis/formats/pyarrow.py:214:5: note:          @classmethod
+ ibis/formats/pyarrow.py:214:5: note:          def infer_table(cls, table: Untyped) -> Schema
+ ibis/formats/pyarrow.py:222:5: error: Signature of "convert_scalar" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:222:5: note:      Superclass:
+ ibis/formats/pyarrow.py:222:5: note:          @classmethod
+ ibis/formats/pyarrow.py:222:5: note:          def convert_scalar(cls, obj: Untyped, dtype: DataType) -> Untyped
+ ibis/formats/pyarrow.py:222:5: note:      Subclass:
+ ibis/formats/pyarrow.py:222:5: note:          @classmethod
+ ibis/formats/pyarrow.py:222:5: note:          def convert_scalar(cls, scalar: Any (from unimported type), dtype: DataType) -> Any (from unimported type)
+ ibis/formats/pyarrow.py:238:5: error: Signature of "convert_column" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:238:5: note:      Superclass:
+ ibis/formats/pyarrow.py:238:5: note:          @classmethod
+ ibis/formats/pyarrow.py:238:5: note:          def convert_column(cls, obj: Untyped, dtype: DataType) -> Untyped
+ ibis/formats/pyarrow.py:238:5: note:      Subclass:
+ ibis/formats/pyarrow.py:238:5: note:          @classmethod
+ ibis/formats/pyarrow.py:238:5: note:          def convert_column(cls, column: Any (from unimported type), dtype: DataType) -> Any (from unimported type)
+ ibis/formats/pyarrow.py:246:5: error: Signature of "convert_table" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pyarrow.py:246:5: note:      Superclass:
+ ibis/formats/pyarrow.py:246:5: note:          @classmethod
+ ibis/formats/pyarrow.py:246:5: note:          def convert_table(cls, obj: Untyped, schema: Schema) -> Untyped
+ ibis/formats/pyarrow.py:246:5: note:      Subclass:
+ ibis/formats/pyarrow.py:246:5: note:          @classmethod
+ ibis/formats/pyarrow.py:246:5: note:          def convert_table(cls, table: Any (from unimported type), schema: Schema) -> Any (from unimported type)
+ ibis/expr/rules.py: note: In class "ValueOf":
+ ibis/expr/rules.py:179:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/core.py:21:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/core.py:63:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/relations.py:40:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/relations.py:79:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:30:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:37:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:44:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:51:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:59:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:78:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:97:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:116:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:134:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:152:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:179:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:191:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:200:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:208:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:216:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:239:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:250:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:261:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:268:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:275:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:282:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:290:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:298:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:311:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:320:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:328:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:335:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:344:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/reductions.py:351:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/generic.py:24:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/generic.py:51:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/generic.py:62:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/generic.py:199:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/generic.py:218:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
- ibis/expr/operations/window.py:53:13: error: No return value expected  [return-value]
+ ibis/expr/operations/window.py:52:25: error: Intersection of "WindowBoundary[T@WindowBoundary, S@WindowBoundary] & Negate" cannot exist: would have incompatible method signatures  [unreachable]
+ ibis/expr/operations/window.py:53:13: error: Statement is unreachable  [unreachable]
+ ibis/expr/operations/vectorized.py:36:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/vectorized.py:44:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/expr/operations/geospatial.py:184:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/formats/pandas.py:106:5: error: Signature of "convert_table" incompatible with supertype "DataMapper"  [override]
+ ibis/formats/pandas.py:106:5: note:      Superclass:
+ ibis/formats/pandas.py:106:5: note:          @classmethod
+ ibis/formats/pandas.py:106:5: note:          def convert_table(cls, obj: Untyped, schema: Schema) -> Untyped
+ ibis/formats/pandas.py:106:5: note:      Subclass:
+ ibis/formats/pandas.py:106:5: note:          @classmethod
+ ibis/formats/pandas.py:106:5: note:          def convert_table(cls, df: Untyped, schema: Untyped) -> None
+ ibis/expr/decompile.py:306:59: error: Intersection of "Relation & Named" cannot exist: would have incompatible method signatures  [unreachable]
+ ibis/expr/decompile.py:307:13: error: Statement is unreachable  [unreachable]
+ ibis/expr/types/relations.py:1996:17: error: Item "Value" of "Value | str | Iterable[Value | str]" has no attribute "expand"  [union-attr]
+ ibis/expr/types/relations.py:1996:17: error: Item "str" of "Value | str | Iterable[Value | str]" has no attribute "expand"  [union-attr]
- ibis/expr/types/relations.py:1996:17: error: Item "Sequence[Value]" of "Iterator[Value] | Sequence[Value] | map[None]" has no attribute "__next__"  [union-attr]
+ ibis/expr/types/relations.py:1996:17: error: Item "Iterable[Value | str]" of "Value | str | Iterable[Value | str]" has no attribute "expand"  [union-attr]
+ ibis/expr/types/relations.py:1997:20: error: If condition is always false  [redundant-expr]
+ ibis/expr/types/relations.py:1997:31: error: Intersection of "Value & Selector" cannot exist: would have incompatible method signatures  [unreachable]
+ ibis/expr/types/relations.py:1997:31: error: Intersection of "str & Selector" cannot exist: would have incompatible method signatures  [unreachable]
+ ibis/expr/types/relations.py:1997:31: error: Intersection of "Iterable[Value | str] & Selector" cannot exist: would have incompatible method signatures  [unreachable]
+ ibis/common/tests/test_graph_benchmarks.py:13:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_graph.py:191:5: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/backends/bigquery/datatypes.py:155:5: error: Signature of "to_ibis" incompatible with supertype "SchemaMapper"  [override]
+ ibis/backends/bigquery/datatypes.py:155:5: note:      Superclass:
+ ibis/backends/bigquery/datatypes.py:155:5: note:          @classmethod
+ ibis/backends/bigquery/datatypes.py:155:5: note:          def to_ibis(cls, obj: Untyped) -> Schema
+ ibis/backends/bigquery/datatypes.py:155:5: note:      Subclass:
+ ibis/backends/bigquery/datatypes.py:155:5: note:          @classmethod
+ ibis/backends/bigquery/datatypes.py:155:5: note:          def to_ibis(cls, fields: list[Any (from unimported type)]) -> Schema
+ ibis/common/tests/test_grounds.py: note: In class "List":
+ ibis/common/tests/test_grounds.py:109:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_grounds.py:142:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_grounds.py:377:5: error: Definition of "__setattr__" in base class "Annotable" is incompatible with definition in base class "Immutable"  [misc]
+ ibis/common/tests/test_grounds.py:382:5: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_grounds.py:798:5: error: Definition of "__setattr__" in base class "Annotable" is incompatible with definition in base class "Immutable"  [misc]
+ ibis/common/tests/test_grounds.py:1023:5: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_grounds.py:1026:5: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "Base":
+ ibis/common/tests/test_egraph.py:116:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "MyNode":
+ ibis/common/tests/test_egraph.py:151:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "MySecondNode":
+ ibis/common/tests/test_egraph.py:168:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "MyInt":
+ ibis/common/tests/test_egraph.py:184:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "MyThirdNode":
+ ibis/common/tests/test_egraph.py:188:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/common/tests/test_egraph.py: note: In class "MyFourthNode":
+ ibis/common/tests/test_egraph.py:204:1: error: Definition of "__setattr__" in base class "Immutable" is incompatible with definition in base class "Annotable"  [misc]
+ ibis/backends/base/sql/alchemy/query_builder.py:388:5: error: Signature of "_convert_group_by" incompatible with supertype "SelectBuilder"  [override]
+ ibis/backends/base/sql/alchemy/query_builder.py:388:5: note:      Superclass:
+ ibis/backends/base/sql/alchemy/query_builder.py:388:5: note:          def _convert_group_by(self, nodes: Untyped) -> None
+ ibis/backends/base/sql/alchemy/query_builder.py:388:5: note:      Subclass:
+ ibis/backends/base/sql/alchemy/query_builder.py:388:5: note:          def _convert_group_by(self, exprs: Untyped) -> None
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: error: Signature of "to_sql" incompatible with supertype "Compiler"  [override]
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:      Superclass:
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:          @classmethod
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:          def to_sql(cls, node: Untyped, context: Untyped = ..., params: Untyped = ...) -> None
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:      Subclass:
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:          @classmethod
+ ibis/backends/base/sql/alchemy/query_builder.py:451:5: note:          def to_sql(cls, expr: Untyped, context: Untyped = ..., params: Untyped = ..., exists: bool = ...) -> None
+ ibis/backends/pyspark/__init__.py:431:5: error: Signature of "_register_in_memory_table" incompatible with supertype "BaseSQLBackend"  [override]
+ ibis/backends/pyspark/__init__.py:431:5: note:      Superclass:
+ ibis/backends/pyspark/__init__.py:431:5: note:          def _register_in_memory_table(self, _: InMemoryTable) -> None
+ ibis/backends/pyspark/__init__.py:431:5: note:      Subclass:
+ ibis/backends/pyspark/__init__.py:431:5: note:          def _register_in_memory_table(self, op: InMemoryTable) -> None
+ ibis/backends/mysql/datatypes.py:14:5: error: Signature of "result_processor" incompatible with supertype "TypeEngine"  [override]
+ ibis/backends/mysql/datatypes.py:14:5: note:      Superclass:
+ ibis/backends/mysql/datatypes.py:14:5: note:          def result_processor(self, dialect: Dialect, coltype: object) -> _ResultProcessorType[datetime] | None
+ ibis/backends/mysql/datatypes.py:14:5: note:      Subclass:
+ ibis/backends/mysql/datatypes.py:14:5: note:          def result_processor(self, *_: Untyped) -> None
+ ibis/backends/flink/compiler/core.py:62:5: error: Signature of "_convert_group_by" incompatible with supertype "SelectBuilder"  [override]
+ ibis/backends/flink/compiler/core.py:62:5: note:      Superclass:
+ ibis/backends/flink/compiler/core.py:62:5: note:          def _convert_group_by(self, nodes: Untyped) -> None
+ ibis/backends/flink/compiler/core.py:62:5: note:      Subclass:
+ ibis/backends/flink/compiler/core.py:62:5: note:          def _convert_group_by(self, exprs: Untyped) -> None
+ ibis/backends/bigquery/__init__.py:123:5: error: Signature of "_register_in_memory_table" incompatible with supertype "BaseSQLBackend"  [override]
+ ibis/backends/bigquery/__init__.py:123:5: note:      Superclass:
+ ibis/backends/bigquery/__init__.py:123:5: note:          def _register_in_memory_table(self, _: InMemoryTable) -> None
+ ibis/backends/bigquery/__init__.py:123:5: note:      Subclass:
+ ibis/backends/bigquery/__init__.py:123:5: note:          def _register_in_memory_table(self, op: InMemoryTable) -> None
+ ibis/backends/bigquery/__init__.py:123:5: note:      Superclass:
+ ibis/backends/bigquery/__init__.py:123:5: note:          def _register_in_memory_table(self, _: InMemoryTable) -> None
+ ibis/backends/bigquery/__init__.py:123:5: note:      Subclass:
+ ibis/backends/bigquery/__init__.py:123:5: note:          def _register_in_memory_table(self, op: InMemoryTable) -> None
+ ibis/tests/expr/mocks.py:97:5: error: Signature of "_load_into_cache" incompatible with supertype "BaseBackend"  [override]
+ ibis/tests/expr/mocks.py:97:5: note:      Superclass:
+ ibis/tests/expr/mocks.py:97:5: note:          def _load_into_cache(self, name: Untyped, expr: Untyped) -> None
+ ibis/tests/expr/mocks.py:97:5: note:      Subclass:
+ ibis/tests/expr/mocks.py:97:5: note:          def _load_into_cache(self, *_: Untyped) -> None
+ ibis/tests/expr/mocks.py:100:5: error: Signature of "_clean_up_cached_table" incompatible with supertype "BaseBackend"  [override]
+ ibis/tests/expr/mocks.py:100:5: note:      Superclass:
+ ibis/tests/expr/mocks.py:100:5: note:          def _clean_up_cached_table(self, op: Untyped) -> None
+ ibis/tests/expr/mocks.py:100:5: note:      Subclass:
+ ibis/tests/expr/mocks.py:100:5: note:          def _clean_up_cached_table(self, _: Untyped) -> None
+ ibis/backends/sqlite/datatypes.py:48:5: error: Signature of "result_processor" incompatible with supertype "DATETIME"  [override]
+ ibis/backends/sqlite/datatypes.py:48:5: note:      Superclass:
+ ibis/backends/sqlite/datatypes.py:48:5: note:          def result_processor(self, dialect: Untyped, coltype: Untyped) -> None
+ ibis/backends/sqlite/datatypes.py:48:5: note:      Subclass:
+ ibis/backends/sqlite/datatypes.py:48:5: note:          def result_processor(self, *_: Untyped) -> None
+ ibis/backends/sqlite/datatypes.py:48:5: error: Signature of "result_processor" incompatible with supertype "TypeEngine"  [override]
+ ibis/backends/sqlite/datatypes.py:48:5: note:      Superclass:
+ ibis/backends/sqlite/datatypes.py:48:5: note:          def result_processor(self, dialect: Dialect, coltype: object) -> _ResultProcessorType[datetime] | None
+ ibis/backends/sqlite/datatypes.py:48:5: note:      Subclass:
+ ibis/backends/sqlite/datatypes.py:48:5: note:          def result_processor(self, *_: Untyped) -> None
+ ibis/backends/snowflake/__init__.py:533:5: error: Signature of "_register_in_memory_table" incompatible with supertype "BaseSQLBackend"  [override]
+ ibis/backends/snowflake/__init__.py:533:5: note:      Superclass:
+ ibis/backends/snowflake/__init__.py:533:5: note:          def _register_in_memory_table(self, _: InMemoryTable) -> None
+ ibis/backends/snowflake/__init__.py:533:5: note:      Subclass:
+ ibis/backends/snowflake/__init__.py:533:5: note:          def _register_in_memory_table(self, op: InMemoryTable) -> None
+ ibis/backends/mysql/__init__.py:144:5: error: Signature of "_metadata" incompatible with supertype "BaseAlchemyBackend"  [override]
+ ibis/backends/mysql/__init__.py:144:5: note:      Superclass:
+ ibis/backends/mysql/__init__.py:144:5: note:          def _metadata(self, query: str) -> Iterable[(str, DataType)]
+ ibis/backends/mysql/__init__.py:144:5: note:      Subclass:
+ ibis/backends/mysql/__init__.py:144:5: note:          def _metadata(self, table: str) -> Iterable[(str, DataType)]
+ ibis/backends/duckdb/__init__.py:1173:5: error: Signature of "_register_in_memory_table" incompatible with supertype "BaseSQLBackend"  [override]
+ ibis/backends/duckdb/__init__.py:1173:5: note:      Superclass:
+ ibis/backends/duckdb/__init__.py:1173:5: note:          def _register_in_memory_table(self, _: InMemoryTable) -> None
+ ibis/backends/duckdb/__init__.py:1173:5: note:      Subclass:
+ ibis/backends/duckdb/__init__.py:1173:5: note:          def _register_in_memory_table(self, op: InMemoryTable) -> None

mongo-python-driver (https://github.com/mongodb/mongo-python-driver)
+ bson/son.py:126:5: error: Signature of "pop" incompatible with supertype "MutableMapping"  [override]
+ bson/son.py:126:5: note:      Superclass:
+ bson/son.py:126:5: note:          @overload
+ bson/son.py:126:5: note:          def pop(self, _Key@SON, /) -> _Value@SON
+ bson/son.py:126:5: note:          @overload
+ bson/son.py:126:5: note:          def pop(self, _Key@SON, /, default: _Value@SON) -> _Value@SON
+ bson/son.py:126:5: note:          @overload
+ bson/son.py:126:5: note:          def [_T] pop(self, _Key@SON, /, default: _T@pop) -> _Value@SON | _T@pop
+ bson/son.py:126:5: note:      Subclass:
+ bson/son.py:126:5: note:          def [_T] pop(self, key: _Key@SON, *args: _Value@SON | _T@pop) -> _Value@SON | _T@pop
+ pymongo/aggregation.py:217:5: error: Signature of "_cursor_collection" incompatible with supertype "_AggregationCommand"  [override]
+ pymongo/aggregation.py:217:5: note:      Superclass:
+ pymongo/aggregation.py:217:5: note:          def _cursor_collection(self, cursor_doc: Mapping[str, Any]) -> Collection[Untyped]
+ pymongo/aggregation.py:217:5: note:      Subclass:
+ pymongo/aggregation.py:217:5: note:          def _cursor_collection(self, cursor: Mapping[str, Any]) -> Collection[Untyped]
+ pymongo/aggregation.py:250:5: error: Signature of "_cursor_collection" incompatible with supertype "_AggregationCommand"  [override]
+ pymongo/aggregation.py:250:5: note:      Superclass:
+ pymongo/aggregation.py:250:5: note:          def _cursor_collection(self, cursor_doc: Mapping[str, Any]) -> Collection[Untyped]
+ pymongo/aggregation.py:250:5: note:      Subclass:
+ pymongo/aggregation.py:250:5: note:          def _cursor_collection(self, cursor: Mapping[str, Any]) -> Collection[Untyped]

sympy (https://github.com/sympy/sympy)
+ sympy/testing/runtests.py:1183:13: error: Signature of "visit_Assert" incompatible with supertype "NodeVisitor"  [override]
+ sympy/testing/runtests.py:1183:13: note:      Superclass:
+ sympy/testing/runtests.py:1183:13: note:          def visit_Assert(self, node: Assert) -> Any
+ sympy/testing/runtests.py:1183:13: note:      Subclass:
+ sympy/testing/runtests.py:1183:13: note:          def visit_Assert(self, stmt: Untyped) -> None
+ sympy/utilities/lambdify.py:1267:5: error: Signature of "_print_unpacking" incompatible with supertype "_EvaluatorPrinter"  [override]
+ sympy/utilities/lambdify.py:1267:5: note:      Superclass:
+ sympy/utilities/lambdify.py:1267:5: note:          def _print_unpacking(self, unpackto: Untyped, arg: Untyped) -> None
+ sympy/utilities/lambdify.py:1267:5: note:      Subclass:
+ sympy/utilities/lambdify.py:1267:5: note:          def _print_unpacking(self, lvalues: Untyped, rvalue: Untyped) -> None
+ sympy/core/containers.py:347:5: error: Signature of "add" incompatible with supertype "MutableSet"  [override]
+ sympy/core/containers.py:347:5: note:      Superclass:
+ sympy/core/containers.py:347:5: note:          def add(self, value: Untyped) -> None
+ sympy/core/containers.py:347:5: note:      Subclass:
+ sympy/core/containers.py:347:5: note:          def add(self, key: Untyped) -> None
+ sympy/core/containers.py:350:5: error: Signature of "discard" incompatible with supertype "MutableSet"  [override]
+ sympy/core/containers.py:350:5: note:      Superclass:
+ sympy/core/containers.py:350:5: note:          def discard(self, value: Untyped) -> None
+ sympy/core/containers.py:350:5: note:      Subclass:
+ sympy/core/containers.py:350:5: note:          def discard(self, key: Untyped) -> None
+ sympy/core/numbers.py:1067:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:1067:5: note:      Superclass:
+ sympy/core/numbers.py:1067:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:1067:5: note:      Subclass:
+ sympy/core/numbers.py:1067:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:1517:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:1517:5: note:      Superclass:
+ sympy/core/numbers.py:1517:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:1517:5: note:      Subclass:
+ sympy/core/numbers.py:1517:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:1517:5: note:      Superclass:
+ sympy/core/numbers.py:1517:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:1517:5: note:      Subclass:
+ sympy/core/numbers.py:1517:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:1991:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:1991:5: note:      Superclass:
+ sympy/core/numbers.py:1991:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:1991:5: note:      Subclass:
+ sympy/core/numbers.py:1991:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:1991:5: note:      Superclass:
+ sympy/core/numbers.py:1991:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:1991:5: note:      Subclass:
+ sympy/core/numbers.py:1991:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:2779:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:2779:5: note:      Superclass:
+ sympy/core/numbers.py:2779:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:2779:5: note:      Subclass:
+ sympy/core/numbers.py:2779:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:2842:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:2842:5: note:      Superclass:
+ sympy/core/numbers.py:2842:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:2842:5: note:      Subclass:
+ sympy/core/numbers.py:2842:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:2898:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:2898:5: note:      Superclass:
+ sympy/core/numbers.py:2898:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:2898:5: note:      Subclass:
+ sympy/core/numbers.py:2898:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:2898:5: note:      Superclass:
+ sympy/core/numbers.py:2898:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:2898:5: note:      Subclass:
+ sympy/core/numbers.py:2898:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:3071:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:3071:5: note:      Superclass:
+ sympy/core/numbers.py:3071:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:3071:5: note:      Subclass:
+ sympy/core/numbers.py:3071:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:3232:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:3232:5: note:      Superclass:
+ sympy/core/numbers.py:3232:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:3232:5: note:      Subclass:
+ sympy/core/numbers.py:3232:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:3495:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:3495:5: note:      Superclass:
+ sympy/core/numbers.py:3495:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:3495:5: note:      Subclass:
+ sympy/core/numbers.py:3495:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:3626:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:3626:5: note:      Superclass:
+ sympy/core/numbers.py:3626:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:3626:5: note:      Subclass:
+ sympy/core/numbers.py:3626:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/numbers.py:4097:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/numbers.py:4097:5: note:      Superclass:
+ sympy/core/numbers.py:4097:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/numbers.py:4097:5: note:      Subclass:
+ sympy/core/numbers.py:4097:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/core/mul.py:720:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/mul.py:720:5: note:      Superclass:
+ sympy/core/mul.py:720:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/mul.py:720:5: note:      Subclass:
+ sympy/core/mul.py:720:5: note:          def _eval_power(self, e: Untyped) -> None
+ sympy/core/mul.py:720:5: note:      Superclass:
+ sympy/core/mul.py:720:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/mul.py:720:5: note:      Subclass:
+ sympy/core/mul.py:720:5: note:          def _eval_power(self, e: Untyped) -> None
+ sympy/core/add.py:451:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/core/add.py:451:5: note:      Superclass:
+ sympy/core/add.py:451:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/core/add.py:451:5: note:      Subclass:
+ sympy/core/add.py:451:5: note:          def _eval_power(self, e: Untyped) -> None
+ sympy/assumptions/assume.py:67:5: error: Signature of "add" incompatible with supertype "MutableSet"  [override]
+ sympy/assumptions/assume.py:67:5: note:      Superclass:
+ sympy/assumptions/assume.py:67:5: note:          def add(self, value: Untyped) -> None
+ sympy/assumptions/assume.py:67:5: note:      Subclass:
+ sympy/assumptions/assume.py:67:5: note:          def add(self, *assumptions: Untyped) -> None
+ sympy/printing/str.py:1003:5: error: Signature of "_print_str" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/str.py:1003:5: note:      Superclass:
+ sympy/printing/str.py:1003:5: note:          def _print_str(self, expr: Untyped) -> None
+ sympy/printing/str.py:1003:5: note:      Subclass:
+ sympy/printing/str.py:1003:5: note:          def _print_str(self, s: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:235:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/piecewise.py:235:5: note:      Superclass:
+ sympy/functions/elementary/piecewise.py:235:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:235:5: note:      Subclass:
+ sympy/functions/elementary/piecewise.py:235:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:453:5: error: Signature of "_eval_interval" incompatible with supertype "Expr"  [override]
+ sympy/functions/elementary/piecewise.py:453:5: note:      Superclass:
+ sympy/functions/elementary/piecewise.py:453:5: note:          def _eval_interval(self, x: Untyped, a: Untyped, b: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:453:5: note:      Subclass:
+ sympy/functions/elementary/piecewise.py:453:5: note:          def _eval_interval(self, sym: Untyped, a: Untyped, b: Untyped, _first: bool = ...) -> None
+ sympy/functions/elementary/piecewise.py:453:5: note:      Superclass:
+ sympy/functions/elementary/piecewise.py:453:5: note:          def _eval_interval(self, x: Untyped, a: Untyped, b: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:453:5: note:      Subclass:
+ sympy/functions/elementary/piecewise.py:453:5: note:          def _eval_interval(self, sym: Untyped, a: Untyped, b: Untyped, _first: bool = ...) -> None
+ sympy/functions/elementary/piecewise.py:753:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/functions/elementary/piecewise.py:753:5: note:      Superclass:
+ sympy/functions/elementary/piecewise.py:753:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/functions/elementary/piecewise.py:753:5: note:      Subclass:
+ sympy/functions/elementary/piecewise.py:753:5: note:          def _eval_power(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:116:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:116:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:116:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:116:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:116:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/functions/elementary/complexes.py:237:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:237:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:237:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:237:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:237:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/functions/elementary/complexes.py:386:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:386:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:386:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:386:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:386:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/functions/elementary/complexes.py:651:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/functions/elementary/complexes.py:651:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:651:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/functions/elementary/complexes.py:651:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:651:5: note:          def _eval_power(self, exponent: Untyped) -> None
+ sympy/functions/elementary/complexes.py:667:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:667:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:667:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:667:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:667:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/functions/elementary/complexes.py:782:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:782:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:782:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:782:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:782:5: note:          def _eval_derivative(self, t: Untyped) -> None
+ sympy/functions/elementary/complexes.py:857:5: error: Signature of "_eval_derivative" incompatible with supertype "Function"  [override]
+ sympy/functions/elementary/complexes.py:857:5: note:      Superclass:
+ sympy/functions/elementary/complexes.py:857:5: note:          def _eval_derivative(self, s: Untyped) -> None
+ sympy/functions/elementary/complexes.py:857:5: note:      Subclass:
+ sympy/functions/elementary/complexes.py:857:5: note:          def _eval_derivative(self, x: Untyped) -> None
+ sympy/printing/rust.py:445:5: error: Signature of "_print_MatrixBase" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/rust.py:445:5: note:      Superclass:
+ sympy/printing/rust.py:445:5: note:          def _print_MatrixBase(self, expr: Untyped) -> None
+ sympy/printing/rust.py:445:5: note:      Subclass:
+ sympy/printing/rust.py:445:5: note:          def _print_MatrixBase(self, A: Untyped) -> None
+ sympy/printing/pycode.py:693:5: error: Signature of "_print_Float" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/pycode.py:693:5: note:      Superclass:
+ sympy/printing/pycode.py:693:5: note:          def _print_Float(self, expr: Untyped) -> None
+ sympy/printing/pycode.py:693:5: note:      Subclass:
+ sympy/printing/pycode.py:693:5: note:          def _print_Float(self, e: Untyped) -> None
+ sympy/printing/pycode.py:703:5: error: Signature of "_print_Rational" incompatible with supertype "PythonCodePrinter"  [override]
+ sympy/printing/pycode.py:703:5: note:      Superclass:
+ sympy/printing/pycode.py:703:5: note:          def _print_Rational(self, expr: Untyped) -> None
+ sympy/printing/pycode.py:703:5: note:      Subclass:
+ sympy/printing/pycode.py:703:5: note:          def _print_Rational(self, e: Untyped) -> None
+ sympy/printing/pycode.py:703:5: error: Signature of "_print_Rational" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/pycode.py:703:5: note:      Superclass:
+ sympy/printing/pycode.py:703:5: note:          def _print_Rational(self, expr: Untyped) -> None
+ sympy/printing/pycode.py:703:5: note:      Subclass:
+ sympy/printing/pycode.py:703:5: note:          def _print_Rational(self, e: Untyped) -> None
+ sympy/printing/pycode.py:710:5: error: Signature of "_print_Half" incompatible with supertype "PythonCodePrinter"  [override]
+ sympy/printing/pycode.py:710:5: note:      Superclass:
+ sympy/printing/pycode.py:710:5: note:          def _print_Half(self, expr: Untyped) -> None
+ sympy/printing/pycode.py:710:5: note:      Subclass:
+ sympy/printing/pycode.py:710:5: note:          def _print_Half(self, e: Untyped) -> None
+ sympy/printing/pycode.py:737:5: error: Signature of "_print_Integral" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/pycode.py:737:5: note:      Superclass:
+ sympy/printing/pycode.py:737:5: note:          def _print_Integral(self, expr: Untyped) -> None
+ sympy/printing/pycode.py:737:5: note:      Subclass:
+ sympy/printing/pycode.py:737:5: note:          def _print_Integral(self, e: Untyped) -> None
+ sympy/printing/pycode.py:737:5: note:      Subclass:
+ sympy/printing/pycode.py:737:5: note:          def _print_Integral(self, e: Untyped) -> None
+ sympy/printing/pycode.py:737:5: note:      Superclass:
+ sympy/printing/pycode.py:737:5: note:          def _print_Integral(self, expr: Untyped) -> None
+ sympy/printing/octave.py:331:5: note:      Subclass:
+ sympy/printing/octave.py:331:5: note:          def _print_MatrixBase(self, A: Untyped) -> None
+ sympy/printing/octave.py:331:5: error: Signature of "_print_MatrixBase" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/octave.py:331:5: note:      Superclass:
+ sympy/printing/octave.py:331:5: note:          def _print_MatrixBase(self, expr: Untyped) -> None
+ sympy/printing/julia.py:335:5: error: Signature of "_print_MatrixBase" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/julia.py:335:5: note:      Superclass:
+ sympy/printing/julia.py:335:5: note:          def _print_MatrixBase(self, expr: Untyped) -> None
+ sympy/printing/julia.py:335:5: note:      Subclass:
+ sympy/printing/julia.py:335:5: note:          def _print_MatrixBase(self, A: Untyped) -> None
+ sympy/printing/glsl.py:109:5: note:      Subclass:
+ sympy/printing/glsl.py:109:5: note:          def _print_MatrixBase(self, mat: Untyped) -> None
+ sympy/printing/glsl.py:109:5: error: Signature of "_print_MatrixBase" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/glsl.py:109:5: note:      Superclass:
+ sympy/printing/glsl.py:109:5: note:          def _print_MatrixBase(self, expr: Untyped) -> None
+ sympy/printing/numpy.py:79:5: error: Signature of "_print_Inverse" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/numpy.py:79:5: note:      Superclass:
+ sympy/printing/numpy.py:79:5: note:          def _print_Inverse(self, I: Untyped) -> None
+ sympy/printing/numpy.py:79:5: note:      Subclass:
+ sympy/printing/numpy.py:79:5: note:          def _print_Inverse(self, expr: Untyped) -> None
+ sympy/printing/numpy.py:251:5: error: Signature of "_print_BlockMatrix" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/numpy.py:251:5: note:      Superclass:
+ sympy/printing/numpy.py:251:5: note:          def _print_BlockMatrix(self, B: Untyped) -> None
+ sympy/printing/numpy.py:251:5: note:      Subclass:
+ sympy/printing/numpy.py:251:5: note:          def _print_BlockMatrix(self, expr: Untyped) -> None
+ sympy/printing/numpy.py:413:5: error: Signature of "_print_Integral" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/numpy.py:413:5: note:      Superclass:
+ sympy/printing/numpy.py:413:5: note:          def _print_Integral(self, expr: Untyped) -> None
+ sympy/printing/numpy.py:413:5: note:      Subclass:
+ sympy/printing/numpy.py:413:5: note:          def _print_Integral(self, e: Untyped) -> None
+ sympy/printing/numpy.py:413:5: note:      Subclass:
+ sympy/printing/numpy.py:413:5: note:          def _print_Integral(self, e: Untyped) -> None
+ sympy/printing/numpy.py:413:5: note:      Superclass:
+ sympy/printing/numpy.py:413:5: note:          def _print_Integral(self, expr: Untyped) -> None
+ sympy/printing/lambdarepr.py:120:5: error: Signature of "_print_Function" incompatible with supertype "CodePrinter"  [override]
+ sympy/printing/lambdarepr.py:120:5: note:      Superclass:
+ sympy/printing/lambdarepr.py:120:5: note:          def _print_Function(self, expr: Untyped) -> None
+ sympy/printing/lambdarepr.py:120:5: note:      Subclass:
+ sympy/printing/lambdarepr.py:120:5: note:          def _print_Function(self, e: Untyped) -> None
+ sympy/printing/lambdarepr.py:120:5: error: Signature of "_print_Function" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/lambdarepr.py:120:5: note:      Superclass:
+ sympy/printing/lambdarepr.py:120:5: note:          def _print_Function(self, expr: Untyped) -> None
+ sympy/printing/lambdarepr.py:120:5: note:      Subclass:
+ sympy/printing/lambdarepr.py:120:5: note:          def _print_Function(self, e: Untyped) -> None
+ sympy/printing/lambdarepr.py:207:5: error: Signature of "_print_Return" incompatible with supertype "AbstractPythonCodePrinter"  [override]
+ sympy/printing/lambdarepr.py:207:5: note:      Superclass:
+ sympy/printing/lambdarepr.py:207:5: note:          def _print_Return(self, ret: Untyped) -> None
+ sympy/printing/lambdarepr.py:207:5: note:      Subclass:
+ sympy/printing/lambdarepr.py:207:5: note:          def _print_Return(self, expr: Untyped) -> None
+ sympy/printing/lambdarepr.py:234:5: error: Signature of "_print_Rational" incompatible with supertype "MpmathPrinter"  [override]
+ sympy/printing/lambdarepr.py:234:5: note:      Superclass:
+ sympy/printing/lambdarepr.py:234:5: note:          def _print_Rational(self, e: Untyped) -> None
+ sympy/printing/lambdarepr.py:234:5: note:      Subclass:
+ sympy/printing/lambdarepr.py:234:5: note:          def _print_Rational(self, expr: Untyped) -> None
+ sympy/printing/lambdarepr.py:237:5: error: Signature of "_print_Half" incompatible with supertype "MpmathPrinter"  [override]
+ sympy/printing/lambdarepr.py:237:5: note:      Superclass:
+ sympy/printing/lambdarepr.py:237:5: note:          def _print_Half(self, e: Untyped) -> None
+ sympy/printing/lambdarepr.py:237:5: note:      Subclass:
+ sympy/printing/lambdarepr.py:237:5: note:          def _print_Half(self, expr: Untyped) -> None
+ sympy/printing/python.py: note: In class "PythonPrinter":
+ sympy/printing/python.py:10:1: error: Definition of "_print_set" in base class "ReprPrinter" is incompatible with definition in base class "StrPrinter"  [misc]
+ sympy/printing/python.py:10:1: error: Definition of "_print_UniversalSet" in base class "ReprPrinter" is incompatible with definition in base class "StrPrinter"  [misc]
+ sympy/printing/python.py:10:1: error: Definition of "_print_dict" in base class "ReprPrinter" is incompatible with definition in base class "StrPrinter"  [misc]
+ sympy/polys/polyoptions.py:52:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:52:5: note:      Superclass:
+ sympy/polys/polyoptions.py:52:5: note:          @classmethod
+ sympy/polys/polyoptions.py:52:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:52:5: note:      Subclass:
+ sympy/polys/polyoptions.py:52:5: note:          @classmethod
+ sympy/polys/polyoptions.py:52:5: note:          def preprocess(cls, value: Untyped) -> None
+ sympy/polys/polyoptions.py:281:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:281:5: note:      Superclass:
+ sympy/polys/polyoptions.py:281:5: note:          @classmethod
+ sympy/polys/polyoptions.py:281:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:281:5: note:      Subclass:
+ sympy/polys/polyoptions.py:281:5: note:          @classmethod
+ sympy/polys/polyoptions.py:281:5: note:          def preprocess(cls, gens: Untyped) -> None
+ sympy/polys/polyoptions.py:308:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:308:5: note:      Superclass:
+ sympy/polys/polyoptions.py:308:5: note:          @classmethod
+ sympy/polys/polyoptions.py:308:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:308:5: note:      Subclass:
+ sympy/polys/polyoptions.py:308:5: note:          @classmethod
+ sympy/polys/polyoptions.py:308:5: note:          def preprocess(cls, wrt: Untyped) -> None
+ sympy/polys/polyoptions.py:337:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:337:5: note:      Superclass:
+ sympy/polys/polyoptions.py:337:5: note:          @classmethod
+ sympy/polys/polyoptions.py:337:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:337:5: note:      Subclass:
+ sympy/polys/polyoptions.py:337:5: note:          @classmethod
+ sympy/polys/polyoptions.py:337:5: note:          def preprocess(cls, sort: Untyped) -> None
+ sympy/polys/polyoptions.py:359:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:359:5: note:      Superclass:
+ sympy/polys/polyoptions.py:359:5: note:          @classmethod
+ sympy/polys/polyoptions.py:359:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:359:5: note:      Subclass:
+ sympy/polys/polyoptions.py:359:5: note:          @classmethod
+ sympy/polys/polyoptions.py:359:5: note:          def preprocess(cls, order: Untyped) -> None
+ sympy/polys/polyoptions.py:412:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:412:5: note:      Superclass:
+ sympy/polys/polyoptions.py:412:5: note:          @classmethod
+ sympy/polys/polyoptions.py:412:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:412:5: note:      Subclass:
+ sympy/polys/polyoptions.py:412:5: note:          @classmethod
+ sympy/polys/polyoptions.py:412:5: note:          def preprocess(cls, domain: Untyped) -> None
+ sympy/polys/polyoptions.py:550:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:550:5: note:      Superclass:
+ sympy/polys/polyoptions.py:550:5: note:          @classmethod
+ sympy/polys/polyoptions.py:550:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:550:5: note:      Subclass:
+ sympy/polys/polyoptions.py:550:5: note:          @classmethod
+ sympy/polys/polyoptions.py:550:5: note:          def preprocess(cls, extension: Untyped) -> None
+ sympy/polys/polyoptions.py:582:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:582:5: note:      Superclass:
+ sympy/polys/polyoptions.py:582:5: note:          @classmethod
+ sympy/polys/polyoptions.py:582:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:582:5: note:      Subclass:
+ sympy/polys/polyoptions.py:582:5: note:          @classmethod
+ sympy/polys/polyoptions.py:582:5: note:          def preprocess(cls, modulus: Untyped) -> None
+ sympy/polys/polyoptions.py:691:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:691:5: note:      Superclass:
+ sympy/polys/polyoptions.py:691:5: note:          @classmethod
+ sympy/polys/polyoptions.py:691:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:691:5: note:      Subclass:
+ sympy/polys/polyoptions.py:691:5: note:          @classmethod
+ sympy/polys/polyoptions.py:691:5: note:          def preprocess(cls, gen: Untyped) -> None
+ sympy/polys/polyoptions.py:718:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:718:5: note:      Superclass:
+ sympy/polys/polyoptions.py:718:5: note:          @classmethod
+ sympy/polys/polyoptions.py:718:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:718:5: note:      Subclass:
+ sympy/polys/polyoptions.py:718:5: note:          @classmethod
+ sympy/polys/polyoptions.py:718:5: note:          def preprocess(cls, symbols: Untyped) -> None
+ sympy/polys/polyoptions.py:731:5: error: Signature of "preprocess" incompatible with supertype "Option"  [override]
+ sympy/polys/polyoptions.py:731:5: note:      Superclass:
+ sympy/polys/polyoptions.py:731:5: note:          @classmethod
+ sympy/polys/polyoptions.py:731:5: note:          def preprocess(cls, option: Untyped) -> None
+ sympy/polys/polyoptions.py:731:5: note:      Subclass:
+ sympy/polys/polyoptions.py:731:5: note:          @classmethod
+ sympy/polys/polyoptions.py:731:5: note:          def preprocess(cls, method: Untyped) -> None
+ sympy/polys/domains/realfield.py:79:5: error: Signature of "to_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:79:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:79:5: note:          def to_sympy(self, a: Untyped) -> None
+ sympy/polys/domains/realfield.py:79:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:79:5: note:          def to_sympy(self, element: Untyped) -> None
+ sympy/polys/domains/realfield.py:83:5: error: Signature of "from_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:83:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:83:5: note:          def from_sympy(self, a: Untyped) -> None
+ sympy/polys/domains/realfield.py:83:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:83:5: note:          def from_sympy(self, expr: Untyped) -> None
+ sympy/polys/domains/realfield.py:95:5: error: Signature of "from_ZZ_python" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:95:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:95:5: note:          def from_ZZ_python(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:95:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:95:5: note:          def from_ZZ_python(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:98:5: error: Signature of "from_ZZ_gmpy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:98:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:98:5: note:          def from_ZZ_gmpy(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:98:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:98:5: note:          def from_ZZ_gmpy(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:108:5: error: Signature of "from_QQ_python" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:108:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:108:5: note:          def from_QQ_python(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:108:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:108:5: note:          def from_QQ_python(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:111:5: error: Signature of "from_QQ_gmpy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:111:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:111:5: note:          def from_QQ_gmpy(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:111:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:111:5: note:          def from_QQ_gmpy(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:114:5: error: Signature of "from_AlgebraicField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:114:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:114:5: note:          def from_AlgebraicField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:114:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:114:5: note:          def from_AlgebraicField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:117:5: error: Signature of "from_RealField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:117:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:117:5: note:          def from_RealField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:117:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:117:5: note:          def from_RealField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/realfield.py:123:5: error: Signature of "from_ComplexField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/realfield.py:123:5: note:      Superclass:
+ sympy/polys/domains/realfield.py:123:5: note:          def from_ComplexField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/realfield.py:123:5: note:      Subclass:
+ sympy/polys/domains/realfield.py:123:5: note:          def from_ComplexField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/expressionrawdomain.py:45:5: error: Signature of "convert_from" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/expressionrawdomain.py:45:5: note:      Superclass:
+ sympy/polys/domains/expressionrawdomain.py:45:5: note:          def convert_from(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/expressionrawdomain.py:45:5: note:      Subclass:
+ sympy/polys/domains/expressionrawdomain.py:45:5: note:          def convert_from(self, a: Untyped, K: Untyped) -> None
+ sympy/polys/domains/expressionrawdomain.py:53:5: error: Signature of "sum" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/expressionrawdomain.py:53:5: note:      Superclass:
+ sympy/polys/domains/expressionrawdomain.py:53:5: note:          def sum(self, args: Untyped) -> None
+ sympy/polys/domains/expressionrawdomain.py:53:5: note:      Subclass:
+ sympy/polys/domains/expressionrawdomain.py:53:5: note:          def sum(self, items: Untyped) -> None
+ sympy/polys/domains/complexfield.py:80:5: error: Signature of "to_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:80:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:80:5: note:          def to_sympy(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:80:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:80:5: note:          def to_sympy(self, element: Untyped) -> None
+ sympy/polys/domains/complexfield.py:84:5: error: Signature of "from_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:84:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:84:5: note:          def from_sympy(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:84:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:84:5: note:          def from_sympy(self, expr: Untyped) -> None
+ sympy/polys/domains/complexfield.py:97:5: error: Signature of "from_ZZ_gmpy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:97:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:97:5: note:          def from_ZZ_gmpy(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:97:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:97:5: note:          def from_ZZ_gmpy(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:100:5: error: Signature of "from_ZZ_python" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:100:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:100:5: note:          def from_ZZ_python(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:100:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:100:5: note:          def from_ZZ_python(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:106:5: error: Signature of "from_QQ_python" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:106:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:106:5: note:          def from_QQ_python(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:106:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:106:5: note:          def from_QQ_python(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:109:5: error: Signature of "from_QQ_gmpy" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:109:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:109:5: note:          def from_QQ_gmpy(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:109:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:109:5: note:          def from_QQ_gmpy(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:121:5: error: Signature of "from_AlgebraicField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:121:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:121:5: note:          def from_AlgebraicField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:121:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:121:5: note:          def from_AlgebraicField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:124:5: error: Signature of "from_RealField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:124:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:124:5: note:          def from_RealField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:124:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:124:5: note:          def from_RealField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:127:5: error: Signature of "from_ComplexField" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:127:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:127:5: note:          def from_ComplexField(K1, a: Untyped, K0: Untyped) -> None
+ sympy/polys/domains/complexfield.py:127:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:127:5: note:          def from_ComplexField(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/domains/complexfield.py:141:5: error: Signature of "is_negative" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:141:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:141:5: note:          def is_negative(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:141:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:141:5: note:          def is_negative(self, element: Untyped) -> None
+ sympy/polys/domains/complexfield.py:145:5: error: Signature of "is_positive" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:145:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:145:5: note:          def is_positive(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:145:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:145:5: note:          def is_positive(self, element: Untyped) -> None
+ sympy/polys/domains/complexfield.py:149:5: error: Signature of "is_nonnegative" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:149:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:149:5: note:          def is_nonnegative(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:149:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:149:5: note:          def is_nonnegative(self, element: Untyped) -> None
+ sympy/polys/domains/complexfield.py:153:5: error: Signature of "is_nonpositive" incompatible with supertype "Domain"  [override]
+ sympy/polys/domains/complexfield.py:153:5: note:      Superclass:
+ sympy/polys/domains/complexfield.py:153:5: note:          def is_nonpositive(self, a: Untyped) -> None
+ sympy/polys/domains/complexfield.py:153:5: note:      Subclass:
+ sympy/polys/domains/complexfield.py:153:5: note:          def is_nonpositive(self, element: Untyped) -> None
+ sympy/polys/domains/gaussiandomains.py:326:1: error: Definition of "is_positive" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:326:1: error: Definition of "is_negative" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:326:1: error: Definition of "is_nonnegative" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:326:1: error: Definition of "canonical_unit" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:326:1: error: Definition of "is_nonpositive" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:498:1: error: Definition of "is_positive" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:498:1: error: Definition of "is_negative" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:498:1: error: Definition of "is_nonnegative" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:498:1: error: Definition of "canonical_unit" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/domains/gaussiandomains.py:498:1: error: Definition of "is_nonpositive" in base class "GaussianDomain" is incompatible with definition in base class "Domain"  [misc]
+ sympy/polys/rings.py:319:5: error: Signature of "ground_new" incompatible with supertype "IPolys"  [override]
+ sympy/polys/rings.py:319:5: note:      Superclass:
+ sympy/polys/rings.py:319:5: note:          def ground_new(self, element: Untyped) -> None
+ sympy/polys/rings.py:319:5: note:      Subclass:
+ sympy/polys/rings.py:319:5: note:          def ground_new(self, coeff: Untyped) -> None
+ sympy/polys/rings.py:353:5: error: Signature of "from_dict" incompatible with supertype "IPolys"  [override]
+ sympy/polys/rings.py:353:5: note:      Superclass:
+ sympy/polys/rings.py:353:5: note:          def from_dict(self, d: Untyped) -> None
+ sympy/polys/rings.py:353:5: note:      Subclass:
+ sympy/polys/rings.py:353:5: note:          def from_dict(self, element: Untyped, orig_domain: Untyped = ...) -> None
+ sympy/polys/rings.py:434:5: error: Signature of "drop" incompatible with supertype "IPolys"  [override]
+ sympy/polys/rings.py:434:5: note:      Superclass:
+ sympy/polys/rings.py:434:5: note:          def drop(self, gen: Untyped) -> None
+ sympy/polys/rings.py:434:5: note:      Subclass:
+ sympy/polys/rings.py:434:5: note:          def drop(self, *gens: Untyped) -> None
+ sympy/polys/agca/extensions.py:316:5: error: Signature of "convert" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:316:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:316:5: note:          def convert(self, element: Untyped, base: Untyped = ...) -> None
+ sympy/polys/agca/extensions.py:316:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:316:5: note:          def convert(self, f: Untyped, base: Untyped = ...) -> None
+ sympy/polys/agca/extensions.py:316:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:316:5: note:          def convert(self, element: Untyped, base: Untyped = ...) -> None
+ sympy/polys/agca/extensions.py:316:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:316:5: note:          def convert(self, f: Untyped, base: Untyped = ...) -> None
+ sympy/polys/agca/extensions.py:320:5: error: Signature of "convert_from" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:320:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:320:5: note:          def convert_from(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/agca/extensions.py:320:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:320:5: note:          def convert_from(self, f: Untyped, base: Untyped) -> None
+ sympy/polys/agca/extensions.py:320:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:320:5: note:          def convert_from(self, element: Untyped, base: Untyped) -> None
+ sympy/polys/agca/extensions.py:320:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:320:5: note:          def convert_from(self, f: Untyped, base: Untyped) -> None
+ sympy/polys/agca/extensions.py:324:5: error: Signature of "to_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:324:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:324:5: note:          def to_sympy(self, a: Untyped) -> None
+ sympy/polys/agca/extensions.py:324:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:324:5: note:          def to_sympy(self, f: Untyped) -> None
+ sympy/polys/agca/extensions.py:324:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:324:5: note:          def to_sympy(self, a: Untyped) -> None
+ sympy/polys/agca/extensions.py:324:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:324:5: note:          def to_sympy(self, f: Untyped) -> None
+ sympy/polys/agca/extensions.py:327:5: error: Signature of "from_sympy" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:327:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:327:5: note:          def from_sympy(self, a: Untyped) -> None
+ sympy/polys/agca/extensions.py:327:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:327:5: note:          def from_sympy(self, f: Untyped) -> None
+ sympy/polys/agca/extensions.py:340:5: error: Signature of "quo" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:340:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:340:5: note:          def quo(self, a: Untyped, b: Untyped) -> None
+ sympy/polys/agca/extensions.py:340:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:340:5: note:          def quo(self, f: Untyped, g: Untyped) -> None
+ sympy/polys/agca/extensions.py:343:5: error: Signature of "exquo" incompatible with supertype "Domain"  [override]
+ sympy/polys/agca/extensions.py:343:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:343:5: note:          def exquo(self, a: Untyped, b: Untyped) -> None
+ sympy/polys/agca/extensions.py:343:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:343:5: note:          def exquo(self, f: Untyped, g: Untyped) -> None
+ sympy/polys/agca/extensions.py:343:5: note:      Superclass:
+ sympy/polys/agca/extensions.py:343:5: note:          def exquo(self, a: Untyped, b: Untyped) -> None
+ sympy/polys/agca/extensions.py:343:5: note:      Subclass:
+ sympy/polys/agca/extensions.py:343:5: note:          def exquo(self, f: Untyped, g: Untyped) -> None
+ sympy/sets/sets.py:908:5: error: Signature of "_contains" incompatible with supertype "Set"  [override]
+ sympy/sets/sets.py:908:5: note:      Superclass:
+ sympy/sets/sets.py:908:5: note:          def _contains(self, other: Untyped) -> None
+ sympy/sets/sets.py:908:5: note:      Subclass:
+ sympy/sets/sets.py:908:5: note:          def _contains(self, element: Untyped) -> None
+ sympy/sets/sets.py:1342:5: error: Signature of "_complement" incompatible with supertype "Set"  [override]
+ sympy/sets/sets.py:1342:5: note:      Superclass:
+ sympy/sets/sets.py:1342:5: note:          def _complement(self, other: Untyped) -> None
+ sympy/sets/sets.py:1342:5: note:      Subclass:
+ sympy/sets/sets.py:1342:5: note:          def _complement(self, universe: Untyped) -> None
+ sympy/sets/sets.py:2301:5: error: Signature of "_contains" incompatible with supertype "Set"  [override]
+ sympy/sets/sets.py:2301:5: note:      Superclass:
+ sympy/sets/sets.py:2301:5: note:          def _contains(self, other: Untyped) -> None
+ sympy/sets/sets.py:2301:5: note:      Subclass:
+ sympy/sets/sets.py:2301:5: note:          def _contains(self, element: Untyped) -> None
+ sympy/series/sequences.py:407:5: error: Signature of "coeff_mul" incompatible with supertype "SeqBase"  [override]
+ sympy/series/sequences.py:407:5: note:      Superclass:
+ sympy/series/sequences.py:407:5: note:          def coeff_mul(self, other: Untyped) -> None
+ sympy/series/sequences.py:407:5: note:      Subclass:
+ sympy/series/sequences.py:407:5: note:          def coeff_mul(self, coeff: Untyped) -> None
+ sympy/series/sequences.py:604:5: error: Signature of "coeff_mul" incompatible with supertype "SeqBase"  [override]
+ sympy/series/sequences.py:604:5: note:      Superclass:
+ sympy/series/sequences.py:604:5: note:          def coeff_mul(self, other: Untyped) -> None
+ sympy/series/sequences.py:604:5: note:      Subclass:
+ sympy/series/sequences.py:604:5: note:          def coeff_mul(self, coeff: Untyped) -> None
+ sympy/series/sequences.py:717:5: error: Signature of "coeff_mul" incompatible with supertype "SeqBase"  [override]
+ sympy/series/sequences.py:717:5: note:      Superclass:
+ sympy/series/sequences.py:717:5: note:          def coeff_mul(self, other: Untyped) -> None
+ sympy/series/sequences.py:717:5: note:      Subclass:
+ sympy/series/sequences.py:717:5: note:          def coeff_mul(self, coeff: Untyped) -> None
+ sympy/series/sequences.py:901:5: error: Signature of "_eval_coeff" incompatible with supertype "SeqBase"  [override]
+ sympy/series/sequences.py:901:5: note:      Superclass:
+ sympy/series/sequences.py:901:5: note:          def _eval_coeff(self, pt: Untyped) -> None
+ sympy/series/sequences.py:901:5: note:      Subclass:
+ sympy/series/sequences.py:901:5: note:          def _eval_coeff(self, index: Untyped) -> None
+ sympy/series/order.py:343:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/series/order.py:343:5: note:      Superclass:
+ sympy/series/order.py:343:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/series/order.py:343:5: note:      Subclass:
+ sympy/series/order.py:343:5: note:          def _eval_power(b, e: Untyped) -> None
+ sympy/matrices/repmatrix.py:621:5: error: Signature of "_eval_col_insert" incompatible with supertype "MatrixShaping"  [override]
+ sympy/matrices/repmatrix.py:621:5: note:      Superclass:
+ sympy/matrices/repmatrix.py:621:5: note:          def _eval_col_insert(self, pos: Untyped, other: Untyped) -> None
+ sympy/matrices/repmatrix.py:621:5: note:      Subclass:
+ sympy/matrices/repmatrix.py:621:5: note:          def _eval_col_insert(self, col: Untyped, other: Untyped) -> None
+ sympy/matrices/repmatrix.py:625:5: error: Signature of "_eval_row_insert" incompatible with supertype "MatrixShaping"  [override]
+ sympy/matrices/repmatrix.py:625:5: note:      Superclass:
+ sympy/matrices/repmatrix.py:625:5: note:          def _eval_row_insert(self, pos: Untyped, other: Untyped) -> None
+ sympy/matrices/repmatrix.py:625:5: note:      Subclass:
+ sympy/matrices/repmatrix.py:625:5: note:          def _eval_row_insert(self, row: Untyped, other: Untyped) -> None
+ sympy/matrices/expressions/special.py:37:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/matrices/expressions/special.py:37:5: note:      Superclass:
+ sympy/matrices/expressions/special.py:37:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/matrices/expressions/special.py:37:5: note:      Subclass:
+ sympy/matrices/expressions/special.py:37:5: note:          def _eval_power(self, exp: Untyped) -> None
+ sympy/matrices/expressions/special.py:170:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/matrices/expressions/special.py:170:5: note:      Superclass:
+ sympy/matrices/expressions/special.py:170:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/matrices/expressions/special.py:170:5: note:      Subclass:
+ sympy/matrices/expressions/special.py:170:5: note:          def _eval_power(self, exp: Untyped) -> None
+ sympy/matrices/expressions/special.py:248:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/matrices/expressions/special.py:248:5: note:      Superclass:
+ sympy/matrices/expressions/special.py:248:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/matrices/expressions/special.py:248:5: note:      Subclass:
+ sympy/matrices/expressions/special.py:248:5: note:          def _eval_power(self, exp: Untyped) -> None
+ sympy/matrices/expressions/permutation.py:87:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/matrices/expressions/permutation.py:87:5: note:      Superclass:
+ sympy/matrices/expressions/permutation.py:87:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/matrices/expressions/permutation.py:87:5: note:      Subclass:
+ sympy/matrices/expressions/permutation.py:87:5: note:          def _eval_power(self, exp: Untyped) -> None
+ sympy/matrices/expressions/matmul.py:24:1: error: Definition of "_eval_power" in base class "MatrixExpr" is incompatible with definition in base class "Mul"  [misc]
+ sympy/matrices/expressions/matexpr.py:206:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/matrices/expressions/matexpr.py:206:5: note:      Superclass:
+ sympy/matrices/expressions/matexpr.py:206:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/matrices/expressions/matexpr.py:206:5: note:      Subclass:
+ sympy/matrices/expressions/matexpr.py:206:5: note:          def _eval_power(self, exp: Untyped) -> None
+ sympy/matrices/expressions/matexpr.py:224:5: error: Signature of "_eval_derivative_n_times" incompatible with supertype "Basic"  [override]
+ sympy/matrices/expressions/matexpr.py:224:5: note:      Superclass:
+ sympy/matrices/expressions/matexpr.py:224:5: note:          def _eval_derivative_n_times(self, s: Untyped, n: Untyped) -> None
+ sympy/matrices/expressions/matexpr.py:224:5: note:      Subclass:
+ sympy/matrices/expressions/matexpr.py:224:5: note:          def _eval_derivative_n_times(self, x: Untyped, n: Untyped) -> None
+ sympy/matrices/expressions/matadd.py:19:1: error: Definition of "_eval_power" in base class "MatrixExpr" is incompatible with definition in base class "Add"  [misc]
+ sympy/integrals/transforms.py:980:5: error: Signature of "_as_integral" incompatible with supertype "IntegralTransform"  [override]
+ sympy/integrals/transforms.py:980:5: note:      Superclass:
+ sympy/integrals/transforms.py:980:5: note:          def _as_integral(self, f: Untyped, x: Untyped, s: Untyped) -> None
+ sympy/integrals/transforms.py:980:5: note:      Subclass:
+ sympy/integrals/transforms.py:980:5: note:          def _as_integral(self, f: Untyped, x: Untyped, k: Untyped) -> None
+ sympy/integrals/transforms.py:1158:5: error: Signature of "_as_integral" incompatible with supertype "IntegralTransform"  [override]
+ sympy/integrals/transforms.py:1158:5: note:      Superclass:
+ sympy/integrals/transforms.py:1158:5: note:          def _as_integral(self, f: Untyped, x: Untyped, s: Untyped) -> None
+ sympy/integrals/transforms.py:1158:5: note:      Subclass:
+ sympy/integrals/transforms.py:1158:5: note:          def _as_integral(self, f: Untyped, x: Untyped, k: Untyped) -> None
+ sympy/geometry/util.py:143:35: error: Intersection of "Plane & Point" cannot exist: would have incompatible method signatures  [unreachable]
+ sympy/geometry/util.py:144:25: error: Statement is unreachable  [unreachable]
+ sympy/geometry/polygon.py:901:5: error: Signature of "intersection" incompatible with supertype "Set"  [override]
+ sympy/geometry/polygon.py:901:5: note:      Superclass:
+ sympy/geometry/polygon.py:901:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/polygon.py:901:5: note:      Subclass:
+ sympy/geometry/polygon.py:901:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/polygon.py:2179:5: error: Signature of "is_similar" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/polygon.py:2179:5: note:      Superclass:
+ sympy/geometry/polygon.py:2179:5: note:          def is_similar(self, other: Untyped) -> None
+ sympy/geometry/polygon.py:2179:5: note:      Subclass:
+ sympy/geometry/polygon.py:2179:5: note:          def is_similar(t1, t2: Untyped) -> None
+ sympy/geometry/point.py:445:5: error: Signature of "equals" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/point.py:445:5: note:      Superclass:
+ sympy/geometry/point.py:445:5: note:          def equals(self, o: Untyped) -> None
+ sympy/geometry/point.py:445:5: note:      Subclass:
+ sympy/geometry/point.py:445:5: note:          def equals(self, other: Untyped) -> None
+ sympy/geometry/point.py:484:5: error: Signature of "intersection" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/point.py:484:5: note:      Superclass:
+ sympy/geometry/point.py:484:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/point.py:484:5: note:      Subclass:
+ sympy/geometry/point.py:484:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/point.py:484:5: note:      Superclass:
+ sympy/geometry/point.py:484:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/point.py:484:5: note:      Subclass:
+ sympy/geometry/point.py:484:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/point.py:1217:5: error: Signature of "intersection" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/point.py:1217:5: note:      Superclass:
+ sympy/geometry/point.py:1217:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/point.py:1217:5: note:      Subclass:
+ sympy/geometry/point.py:1217:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/plane.py:826:5: error: Signature of "parameter_value" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/plane.py:826:5: note:      Superclass:
+ sympy/geometry/plane.py:826:5: note:          def parameter_value(self, other: Untyped, t: Untyped) -> None
+ sympy/geometry/plane.py:826:5: note:      Subclass:
+ sympy/geometry/plane.py:826:5: note:          def parameter_value(self, other: Untyped, u: Untyped, v: Untyped = ...) -> None
+ sympy/geometry/parabola.py:292:5: error: Signature of "intersection" incompatible with supertype "Set"  [override]
+ sympy/geometry/parabola.py:292:5: note:      Superclass:
+ sympy/geometry/parabola.py:292:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/parabola.py:292:5: note:      Subclass:
+ sympy/geometry/parabola.py:292:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/line.py:390:5: error: Signature of "intersection" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/line.py:390:5: note:      Superclass:
+ sympy/geometry/line.py:390:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/line.py:390:5: note:      Subclass:
+ sympy/geometry/line.py:390:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/line.py:1306:5: error: Signature of "equals" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/line.py:1306:5: note:      Superclass:
+ sympy/geometry/line.py:1306:5: note:          def equals(self, o: Untyped) -> None
+ sympy/geometry/line.py:1306:5: note:      Subclass:
+ sympy/geometry/line.py:1306:5: note:          def equals(self, other: Untyped) -> None
+ sympy/geometry/line.py:1517:5: error: Signature of "equals" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/line.py:1517:5: note:      Superclass:
+ sympy/geometry/line.py:1517:5: note:          def equals(self, o: Untyped) -> None
+ sympy/geometry/line.py:1517:5: note:      Subclass:
+ sympy/geometry/line.py:1517:5: note:          def equals(self, other: Untyped) -> None
+ sympy/geometry/line.py:1699:5: error: Signature of "equals" incompatible with supertype "GeometryEntity"  [override]
+ sympy/geometry/line.py:1699:5: note:      Superclass:
+ sympy/geometry/line.py:1699:5: note:          def equals(self, o: Untyped) -> None
+ sympy/geometry/line.py:1699:5: note:      Subclass:
+ sympy/geometry/line.py:1699:5: note:          def equals(self, other: Untyped) -> None
+ sympy/geometry/line.py: note: In class "Line2D":
+ sympy/geometry/line.py:1987:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/line.py: note: In class "Ray2D":
+ sympy/geometry/line.py:2160:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/line.py: note: In class "Segment2D":
+ sympy/geometry/line.py:2362:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/line.py: note: In class "Line3D":
+ sympy/geometry/line.py:2504:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/line.py: note: In class "Ray3D":
+ sympy/geometry/line.py:2670:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/line.py: note: In class "Segment3D":
+ sympy/geometry/line.py:2834:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/entity.py: note: In class "GeometrySet":
+ sympy/geometry/entity.py:540:1: error: Definition of "intersection" in base class "GeometryEntity" is incompatible with definition in base class "Set"  [misc]
+ sympy/geometry/ellipse.py:614:5: error: Signature of "intersection" incompatible with supertype "Set"  [override]
+ sympy/geometry/ellipse.py:614:5: note:      Superclass:
+ sympy/geometry/ellipse.py:614:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/ellipse.py:614:5: note:      Subclass:
+ sympy/geometry/ellipse.py:614:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/geometry/ellipse.py:1662:5: error: Signature of "intersection" incompatible with supertype "Set"  [override]
+ sympy/geometry/ellipse.py:1662:5: note:      Superclass:
+ sympy/geometry/ellipse.py:1662:5: note:          def intersection(self, other: Untyped) -> None
+ sympy/geometry/ellipse.py:1662:5: note:      Subclass:
+ sympy/geometry/ellipse.py:1662:5: note:          def intersection(self, o: Untyped) -> None
+ sympy/functions/special/tensor_functions.py:207:5: error: Signature of "_eval_power" incompatible with supertype "Expr"  [override]
+ sympy/functions/special/tensor_functions.py:207:5: note:      Superclass:
+ sympy/functions/special/tensor_functions.py:207:5: note:          def _eval_power(self, other: Untyped) -> None
+ sympy/functions/special/tensor_functions.py:207:5: note:      Subclass:
+ sympy/functions/special/tensor_functions.py:207:5: note:          def _eval_power(self, expt: Untyped) -> None
+ sympy/functions/special/hyper.py:958:5: error: Signature of "_expr_small" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:958:5: note:      Superclass:
+ sympy/functions/special/hyper.py:958:5: note:          @classmethod
+ sympy/functions/special/hyper.py:958:5: note:          def _expr_small(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:958:5: note:      Subclass:
+ sympy/functions/special/hyper.py:958:5: note:          @classmethod
+ sympy/functions/special/hyper.py:958:5: note:          def _expr_small(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:962:5: error: Signature of "_expr_small_minus" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:962:5: note:      Superclass:
+ sympy/functions/special/hyper.py:962:5: note:          @classmethod
+ sympy/functions/special/hyper.py:962:5: note:          def _expr_small_minus(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:962:5: note:      Subclass:
+ sympy/functions/special/hyper.py:962:5: note:          @classmethod
+ sympy/functions/special/hyper.py:962:5: note:          def _expr_small_minus(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:966:5: error: Signature of "_expr_big" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:966:5: note:      Superclass:
+ sympy/functions/special/hyper.py:966:5: note:          @classmethod
+ sympy/functions/special/hyper.py:966:5: note:          def _expr_big(cls, x: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:966:5: note:      Subclass:
+ sympy/functions/special/hyper.py:966:5: note:          @classmethod
+ sympy/functions/special/hyper.py:966:5: note:          def _expr_big(cls, z: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:970:5: error: Signature of "_expr_big_minus" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:970:5: note:      Superclass:
+ sympy/functions/special/hyper.py:970:5: note:          @classmethod
+ sympy/functions/special/hyper.py:970:5: note:          def _expr_big_minus(cls, x: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:970:5: note:      Subclass:
+ sympy/functions/special/hyper.py:970:5: note:          @classmethod
+ sympy/functions/special/hyper.py:970:5: note:          def _expr_big_minus(cls, z: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:978:5: error: Signature of "_expr_small" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:978:5: note:      Superclass:
+ sympy/functions/special/hyper.py:978:5: note:          @classmethod
+ sympy/functions/special/hyper.py:978:5: note:          def _expr_small(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:978:5: note:      Subclass:
+ sympy/functions/special/hyper.py:978:5: note:          @classmethod
+ sympy/functions/special/hyper.py:978:5: note:          def _expr_small(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:983:5: error: Signature of "_expr_small_minus" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:983:5: note:      Superclass:
+ sympy/functions/special/hyper.py:983:5: note:          @classmethod
+ sympy/functions/special/hyper.py:983:5: note:          def _expr_small_minus(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:983:5: note:      Subclass:
+ sympy/functions/special/hyper.py:983:5: note:          @classmethod
+ sympy/functions/special/hyper.py:983:5: note:          def _expr_small_minus(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:988:5: error: Signature of "_expr_big" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:988:5: note:      Superclass:
+ sympy/functions/special/hyper.py:988:5: note:          @classmethod
+ sympy/functions/special/hyper.py:988:5: note:          def _expr_big(cls, x: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:988:5: note:      Subclass:
+ sympy/functions/special/hyper.py:988:5: note:          @classmethod
+ sympy/functions/special/hyper.py:988:5: note:          def _expr_big(cls, z: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:993:5: error: Signature of "_expr_big_minus" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:993:5: note:      Superclass:
+ sympy/functions/special/hyper.py:993:5: note:          @classmethod
+ sympy/functions/special/hyper.py:993:5: note:          def _expr_big_minus(cls, x: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:993:5: note:      Subclass:
+ sympy/functions/special/hyper.py:993:5: note:          @classmethod
+ sympy/functions/special/hyper.py:993:5: note:          def _expr_big_minus(cls, z: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:1062:5: error: Signature of "_expr_small" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:1062:5: note:      Superclass:
+ sympy/functions/special/hyper.py:1062:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1062:5: note:          def _expr_small(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:1062:5: note:      Subclass:
+ sympy/functions/special/hyper.py:1062:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1062:5: note:          def _expr_small(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:1066:5: error: Signature of "_expr_small_minus" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:1066:5: note:      Superclass:
+ sympy/functions/special/hyper.py:1066:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1066:5: note:          def _expr_small_minus(cls, x: Untyped) -> None
+ sympy/functions/special/hyper.py:1066:5: note:      Subclass:
+ sympy/functions/special/hyper.py:1066:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1066:5: note:          def _expr_small_minus(cls, z: Untyped) -> None
+ sympy/functions/special/hyper.py:1070:5: error: Signature of "_expr_big" incompatible with supertype "HyperRep"  [override]
+ sympy/functions/special/hyper.py:1070:5: note:      Superclass:
+ sympy/functions/special/hyper.py:1070:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1070:5: note:          def _expr_big(cls, x: Untyped, n: Untyped) -> None
+ sympy/functions/special/hyper.py:1070:5: note:      Subclass:
+ sympy/functions/special/hyper.py:1070:5: note:          @classmethod
+ sympy/functions/special/hyper.py:1070:5: note:          def _expr_big(cls, z: Untyped, n: Untyped) -> None
+ sympy/algebras/quaternion.py:1001:5: error: Signature of "_eval_subs" incompatible with supertype "Basic"  [override]
+ sympy/algebras/quaternion.py:1001:5: note:      Superclass:
+ sympy/algebras/quaternion.py:1001:5: note:          def _eval_subs(self, old: Untyped, new: Untyped) -> None
+ sympy/algebras/quaternion.py:1001:5: note:      Subclass:
+ sympy/algebras/quaternion.py:1001:5: note:          def _eval_subs(self, *args: Untyped) -> None
+ sympy/solvers/diophantine/diophantine.py:111:5: error: Signature of "add" incompatible with supertype "MutableSet"  [override]
+ sympy/solvers/diophantine/diophantine.py:111:5: note:      Superclass:
+ sympy/solvers/diophantine/diophantine.py:111:5: note:          def add(self, value: Untyped) -> None
+ sympy/solvers/diophantine/diophantine.py:111:5: note:      Subclass:
+ sympy/solvers/diophantine/diophantine.py:111:5: note:          def add(self, solution: Untyped) -> None
+ sympy/solvers/diophantine/diophantine.py:111:5: note:      Superclass:
+ sympy/solvers/diophantine/diophantine.py:111:5: note:          def add(self, value: Untyped) -> None
+ sympy/solvers/diophantine/diophantine.py:111:5: note:      Subclass:
+ sympy/solvers/diophantine/diophantine.py:111:5: note:          def add(self, solution: Untyped) -> None
+ sympy/integrals/laplace.py:1265:5: error: Signature of "_as_integral" incompatible with supertype "IntegralTransform"  [override]
+ sympy/integrals/laplace.py:1265:5: note:      Superclass:
+ sympy/integrals/laplace.py:1265:5: note:          def _as_integral(self, f: Untyped, x: Untyped, s: Untyped) -> None
+ sympy/integrals/laplace.py:1265:5: note:      Subclass:
+ sympy/integrals/laplace.py:1265:5: note:          def _as_integral(self, f: Untyped, t: Untyped, s: Untyped) -> None
+ sympy/printing/fortran.py:782:5: error: Signature of "_print_ArrayElement" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/fortran.py:782:5: note:      Superclass:
+ sympy/printing/fortran.py:782:5: note:          def _print_ArrayElement(self, expr: Untyped) -> None
+ sympy/printing/fortran.py:782:5: note:      Subclass:
+ sympy/printing/fortran.py:782:5: note:          def _print_ArrayElement(self, elem: Untyped) -> None
+ sympy/printing/c.py:521:5: error: Signature of "_print_Float" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/c.py:521:5: note:      Superclass:
+ sympy/printing/c.py:521:5: note:          def _print_Float(self, expr: Untyped) -> None
+ sympy/printing/c.py:521:5: note:      Subclass:
+ sympy/printing/c.py:521:5: note:          def _print_Float(self, flt: Untyped) -> None
+ sympy/printing/c.py:521:5: note:      Superclass:
+ sympy/printing/c.py:521:5: note:          def _print_Float(self, expr: Untyped) -> None
+ sympy/printing/c.py:521:5: note:      Subclass:
+ sympy/printing/c.py:521:5: note:          def _print_Float(self, flt: Untyped) -> None
+ sympy/polys/agca/ideals.py:298:5: error: Signature of "_contains_ideal" incompatible with supertype "Ideal"  [override]
+ sympy/polys/agca/ideals.py:298:5: note:      Superclass:
+ sympy/polys/agca/ideals.py:298:5: note:          def _contains_ideal(self, I: Untyped) -> None
+ sympy/polys/agca/ideals.py:298:5: note:      Subclass:
+ sympy/polys/agca/ideals.py:298:5: note:          def _contains_ideal(self, J: Untyped) -> None
+ sympy/vector/dyadic.py: note: In class "BaseDyadic":
+ sympy/vector/dyadic.py:194:1: error: Definition of "_eval_derivative" in base class "BasisDependent" is incompatible with definition in base class "AtomicExpr"  [misc]
+ sympy/vector/vector.py: note: In class "BaseVector":
+ sympy/vector/vector.py:348:1: error: Definition of "_eval_derivative" in base class "BasisDependent" is incompatible with definition in base class "AtomicExpr"  [misc]
+ sympy/printing/tensorflow.py:114:5: error: Signature of "_print_Inverse" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/tensorflow.py:114:5: note:      Superclass:
+ sympy/printing/tensorflow.py:114:5: note:          def _print_Inverse(self, I: Untyped) -> None
+ sympy/printing/tensorflow.py:114:5: note:      Subclass:
+ sympy/printing/tensorflow.py:114:5: note:          def _print_Inverse(self, expr: Untyped) -> None
+ sympy/printing/tensorflow.py:118:5: error: Signature of "_print_Transpose" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/tensorflow.py:118:5: note:      Superclass:
+ sympy/printing/tensorflow.py:118:5: note:          def _print_Transpose(self, T: Untyped) -> None
+ sympy/printing/tensorflow.py:118:5: note:      Subclass:
+ sympy/printing/tensorflow.py:118:5: note:          def _print_Transpose(self, expr: Untyped) -> None
+ sympy/printing/tensorflow.py:118:5: note:      Superclass:
+ sympy/printing/tensorflow.py:118:5: note:          def _print_Transpose(self, T: Untyped) -> None
+ sympy/printing/tensorflow.py:118:5: note:      Subclass:
+ sympy/printing/tensorflow.py:118:5: note:          def _print_Transpose(self, expr: Untyped) -> None
+ sympy/polys/agca/modules.py:400:5: error: Signature of "quotient_module" incompatible with supertype "Module"  [override]
+ sympy/polys/agca/modules.py:400:5: note:      Superclass:
+ sympy/polys/agca/modules.py:400:5: note:          def quotient_module(self, other: Untyped) -> None
+ sympy/polys/agca/modules.py:400:5: note:      Subclass:
+ sympy/polys/agca/modules.py:400:5: note:          def quotient_module(self, submodule: Untyped) -> None
+ sympy/polys/agca/modules.py:953:5: error: Signature of "multiply_ideal" incompatible with supertype "Module"  [override]
+ sympy/polys/agca/modules.py:953:5: note:      Superclass:
+ sympy/polys/agca/modules.py:953:5: note:          def multiply_ideal(self, other: Untyped) -> None
+ sympy/polys/agca/modules.py:953:5: note:      Subclass:
+ sympy/polys/agca/modules.py:953:5: note:          def multiply_ideal(self, I: Untyped) -> None
+ sympy/polys/agca/modules.py:1035:5: error: Signature of "_contains" incompatible with supertype "SubModule"  [override]
+ sympy/polys/agca/modules.py:1035:5: note:      Superclass:
+ sympy/polys/agca/modules.py:1035:5: note:          def _contains(self, other: Untyped) -> None
+ sympy/polys/agca/modules.py:1035:5: note:      Subclass:
+ sympy/polys/agca/modules.py:1035:5: note:          def _contains(self, elem: Untyped) -> None
+ sympy/polys/agca/modules.py:1168:5: error: Signature of "_contains" incompatible with supertype "SubModule"  [override]
+ sympy/polys/agca/modules.py:1168:5: note:      Superclass:
+ sympy/polys/agca/modules.py:1168:5: note:          def _contains(self, other: Untyped) -> None
+ sympy/polys/agca/modules.py:1168:5: note:      Subclass:
+ sympy/polys/agca/modules.py:1168:5: note:          def _contains(self, x: Untyped) -> None
+ sympy/polys/agca/modules.py:1312:5: error: Signature of "_contains" incompatible with supertype "SubModule"  [override]
+ sympy/polys/agca/modules.py:1312:5: note:      Superclass:
+ sympy/polys/agca/modules.py:1312:5: note:          def _contains(self, other: Untyped) -> None
+ sympy/polys/agca/modules.py:1312:5: note:      Subclass:
+ sympy/polys/agca/modules.py:1312:5: note:          def _contains(self, elem: Untyped) -> None
+ sympy/polys/agca/modules.py:1319:5: error: Signature of "_in_terms_of_generators" incompatible with supertype "SubModule"  [override]
+ sympy/polys/agca/modules.py:1319:5: note:      Superclass:
+ sympy/polys/agca/modules.py:1319:5: note:          def _in_terms_of_generators(self, e: Untyped) -> None
+ sympy/polys/agca/modules.py:1319:5: note:      Subclass:
+ sympy/polys/agca/modules.py:1319:5: note:          def _in_terms_of_generators(self, elem: Untyped) -> None
+ sympy/polys/domains/old_polynomialring.py:335:5: error: Signature of "new" incompatible with supertype "PolynomialRingBase"  [override]
+ sympy/polys/domains/old_polynomialring.py:335:5: note:      Superclass:
+ sympy/polys/domains/old_polynomialring.py:335:5: note:          def new(self, element: Untyped) -> None
+ sympy/polys/domains/old_polynomialring.py:335:5: note:      Subclass:
+ sympy/polys/domains/old_polynomialring.py:335:5: note:          def new(self, a: Untyped) -> None
+ sympy/stats/crv_types.py:739:5: error: Signature of "_quantile" incompatible with supertype "SingleContinuousDistribution"  [override]
+ sympy/stats/crv_types.py:739:5: note:      Superclass:
+ sympy/stats/crv_types.py:739:5: note:          def _quantile(self, x: Untyped) -> None
+ sympy/stats/crv_types.py:739:5: note:      Subclass:
+ sympy/stats/crv_types.py:739:5: note:          def _quantile(self, p: Untyped) -> None
+ sympy/stats/crv_types.py:1406:5: error: Signature of "_quantile" incompatible with supertype "SingleContinuousDistribution"  [override]
+ sympy/stats/crv_types.py:1406:5: note:      Superclass:
+ sympy/stats/crv_types.py:1406:5: note:          def _quantile(self, x: Untyped) -> None
+ sympy/stats/crv_types.py:1406:5: note:      Subclass:
+ sympy/stats/crv_types.py:1406:5: note:          def _quantile(self, p: Untyped) -> None
+ sympy/stats/crv_types.py:2552:5: error: Signature of "_quantile" incompatible with supertype "SingleContinuousDistribution"  [override]
+ sympy/stats/crv_types.py:2552:5: note:      Superclass:
+ sympy/stats/crv_types.py:2552:5: note:          def _quantile(self, x: Untyped) -> None
+ sympy/stats/crv_types.py:2552:5: note:      Subclass:
+ sympy/stats/crv_types.py:2552:5: note:          def _quantile(self, p: Untyped) -> None
+ sympy/stats/crv_types.py:2628:5: error: Signature of "_quantile" incompatible with supertype "SingleContinuousDistribution"  [override]
+ sympy/stats/crv_types.py:2628:5: note:      Superclass:
+ sympy/stats/crv_types.py:2628:5: note:          def _quantile(self, x: Untyped) -> None
+ sympy/stats/crv_types.py:2628:5: note:      Subclass:
+ sympy/stats/crv_types.py:2628:5: note:          def _quantile(self, p: Untyped) -> None
+ sympy/stats/crv_types.py:3230:5: error: Signature of "_quantile" incompatible with supertype "SingleContinuousDistribution"  [override]
+ sympy/stats/crv_types.py:3230:5: note:      Superclass:
+ sympy/stats/crv_types.py:3230:5: note:          def _quantile(self, x: Untyped) -> None
+ sympy/stats/crv_types.py:3230:5: note:      Subclass:
+ sympy/stats/crv_types.py:3230:5: note:          def _quantile(self, p: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:72:9: error: Signature of "_print_Integer" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/tests/test_cxx.py:72:9: note:      Superclass:
+ sympy/printing/tests/test_cxx.py:72:9: note:          def _print_Integer(self, expr: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:72:9: note:      Subclass:
+ sympy/printing/tests/test_cxx.py:72:9: note:          def _print_Integer(self, arg: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:75:9: error: Signature of "_print_Float" incompatible with supertype "C89CodePrinter"  [override]
+ sympy/printing/tests/test_cxx.py:75:9: note:      Superclass:
+ sympy/printing/tests/test_cxx.py:75:9: note:          def _print_Float(self, flt: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:75:9: note:      Subclass:
+ sympy/printing/tests/test_cxx.py:75:9: note:          def _print_Float(self, arg: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:75:9: error: Signature of "_print_Float" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/tests/test_cxx.py:75:9: note:      Superclass:
+ sympy/printing/tests/test_cxx.py:75:9: note:          def _print_Float(self, expr: Untyped) -> None
+ sympy/printing/tests/test_cxx.py:75:9: note:      Subclass:
+ sympy/printing/tests/test_cxx.py:75:9: note:          def _print_Float(self, arg: Untyped) -> None
+ sympy/printing/tests/test_codeprinter.py:41:9: error: Signature of "emptyPrinter" incompatible with supertype "StrPrinter"  [override]
+ sympy/printing/tests/test_codeprinter.py:41:9: note:      Superclass:
+ sympy/printing/tests/test_codeprinter.py:41:9: note:          def emptyPrinter(self, expr: Untyped) -> None
+ sympy/printing/tests/test_codeprinter.py:41:9: note:      Subclass:
+ sympy/printing/tests/test_codeprinter.py:41:9: note:          def emptyPrinter(self, obj: Untyped) -> None
+ sympy/printing/tests/test_codeprinter.py:41:9: error: Signature of "emptyPrinter" incompatible with supertype "Printer"  [override]
+ sympy/printing/tests/test_codeprinter.py:41:9: note:      Superclass:
+ sympy/printing/tests/test_codeprinter.py:41:9: note:          def emptyPrinter(self, expr: Untyped) -> None
+ sympy/printing/tests/test_codeprinter.py:41:9: note:      Subclass:
+ sympy/printing/tests/test_codeprinter.py:41:9: note:          def emptyPrinter(self, obj: Untyped) -> None
+ sympy/physics/vector/printing.py:18:5: error: Signature of "_print_Derivative" incompatible with supertype "StrPrinter"  [override]
+ sympy/physics/vector/printing.py:18:5: note:      Superclass:
+ sympy/physics/vector/printing.py:18:5: note:          def _print_Derivative(self, expr: Untyped) -> None
+ sympy/physics/vector/printing.py:18:5: note:      Subclass:
+ sympy/physics/vector/printing.py:18:5: note:          def _print_Derivative(self, e: Untyped) -> None
+ sympy/physics/vector/printing.py:30:5: error: Signature of "_print_Function" incompatible with supertype "StrPrinter"  [override]
+ sympy/physics/vector/printing.py:30:5: note:      Superclass:
+ sympy/physics/vector/printing.py:30:5: note:          def _print_Function(self, expr: Untyped) -> None
+ sympy/physics/vector/printing.py:30:5: note:      Subclass:
+ sympy/physics/vector/printing.py:30:5: note:          def _print_Function(self, e: Untyped) -> None
+ sympy/physics/vector/printing.py:40:5: error: Signature of "_print_str" incompatible with supertype "StrPrinter"  [override]
+ sympy/physics/vector/printing.py:40:5: note:      Superclass:
+ sympy/physics/vector/printing.py:40:5: note:          def _print_str(self, expr: Untyped) -> None
+ sympy/physics/vector/printing.py:40:5: note:      Subclass:
+ sympy/physics/vector/printing.py:40:5: note:          def _print_str(self, s: Untyped) -> None
+ sympy/physics/vector/printing.py:69:5: error: Signature of "_print_Derivative" incompatible with supertype "LatexPrinter"  [override]
+ sympy/physics/vector/printing.py:69:5: note:      Superclass:
+ sympy/physics/vector/printing.py:69:5: note:          def _print_Derivative(self, expr: Untyped) -> None
+ sympy/physics/vector/printing.py:69:5: note:      Subclass:
+ sympy/physics/vector/printing.py:69:5: note:          def _print_Derivative(self, der_expr: Untyped) -> None
+ sympy/physics/continuum_mechanics/beam.py:2585:5: error: Signature of "apply_load" incompatible with supertype "Beam"  [override]
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:      Superclass:
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:          def apply_load(self, value: Untyped, start: Untyped, order: Untyped, end: Untyped = ...) -> None
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:      Subclass:
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:          def apply_load(self, value: Untyped, start: Untyped, order: Untyped, dir: str = ...) -> None
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:      Superclass:
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:          def apply_load(self, value: Untyped, start: Untyped, order: Untyped, end: Untyped = ...) -> None
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:      Subclass:
+ sympy/physics/continuum_mechanics/beam.py:2585:5: note:          def apply_load(self, value: Untyped, start: Untyped, order: Untyped, dir: str = ...) -> None
+ sympy/utilities/autowrap.py:204:5: error: Signature of "_generate_code" incompatible with supertype "CodeWrapper"  [override]
+ sympy/utilities/autowrap.py:204:5: note:      Superclass:
+ sympy/utilities/autowrap.py:204:5: note:          def _generate_code(self, main_routine: Untyped, routines: Untyped) -> None
+ sympy/utilities/autowrap.py:204:5: note:      Subclass:

... (truncated 192 lines) ...

manticore (https://github.com/trailofbits/manticore)
+ manticore/core/smtlib/solver.py:704:5: error: Signature of "get_value" incompatible with supertype "Solver"  [override]
+ manticore/core/smtlib/solver.py:704:5: note:      Superclass:```</details>

... (truncated 1465 lines) ...

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

Successfully merging this pull request may close these issues.

no error when overriding method with different argument name
2 participants