Created
May 6, 2025 10:28
-
-
Save AlexWaygood/0455d8ead2b114f4473c2a1cd4c7f637 to your computer and use it in GitHub Desktop.
primer report
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com2ann (https://github.com/ilevkivskyi/com2ann) | |
+ error[lint:invalid-argument-type] src/com2ann.py:667:23: Argument to this function is incorrect: Expected `str`, found `str | None` | |
+ error[lint:invalid-argument-type] src/test_cli.py:51:59: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Unknown, ...]` | |
- Found 9 diagnostics | |
+ Found 11 diagnostics | |
mypy_primer (https://github.com/hauntsaninja/mypy_primer) | |
+ error[lint:no-matching-overload] mypy_primer/globals.py:224:24: No overload of bound method `parse_args` matches arguments | |
- error[lint:unsupported-operator] mypy_primer/main.py:168:23: Operator `*` is unsupported between objects of type `list` and `int | None` | |
+ error[lint:unsupported-operator] mypy_primer/main.py:168:23: Operator `*` is unsupported between objects of type `list[Unknown]` and `int | None` | |
+ error[lint:invalid-parameter-default] mypy_primer/model.py:161:46: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mypy_primer/model.py:247:46: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mypy_primer/model.py:295:36: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mypy_primer/model.py:354:46: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mypy_primer/projects.py:54:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:no-matching-overload] mypy_primer/utils.py:33:12: No overload of bound method `__init__` matches arguments | |
- Found 18 diagnostics | |
+ Found 25 diagnostics | |
async-utils (https://github.com/mikeshardmind/async-utils) | |
+ error[lint:invalid-argument-type] src/async_utils/bg_loop.py:81:42: Argument to this function is incorrect: Expected `Future[_T] | Future[_T]`, found `Future[_T]` | |
+ error[lint:invalid-argument-type] src/async_utils/corofunc_cache.py:117:50: Argument to this function is incorrect: Expected `Future[_T] | Future[_T]`, found `Future[R]` | |
+ error[lint:invalid-argument-type] src/async_utils/corofunc_cache.py:196:50: Argument to this function is incorrect: Expected `Future[_T] | Future[_T]`, found `Future[R]` | |
+ error[lint:invalid-assignment] src/async_utils/sig_service.py:37:1: Object of type `tuple[Literal["SIGINT"], Literal["SIGTERM"], Literal["SIGBREAK"]]` is not assignable to `Sequence[Literal["SIGINT", "SIGTERM", "SIGBREAK", "SIGHUP"]]` | |
+ error[lint:invalid-argument-type] src/async_utils/task_cache.py:176:43: Argument to this function is incorrect: Expected `Future[_T] | Future[_T]`, found `Future[R]` | |
+ error[lint:invalid-return-type] src/async_utils/task_cache.py:177:24: Return type does not match returned value: Expected `Task[R]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] src/async_utils/task_cache.py:262:43: Argument to this function is incorrect: Expected `Future[_T] | Future[_T]`, found `Future[R]` | |
+ error[lint:invalid-return-type] src/async_utils/task_cache.py:263:24: Return type does not match returned value: Expected `Task[R]`, found `Task[_T]` | |
- Found 23 diagnostics | |
+ Found 31 diagnostics | |
parso (https://github.com/davidhalter/parso) | |
- error[lint:invalid-parameter-default] parso/grammar.py:53:15: Default value of type `None` is not assignable to annotated parameter type `PathLike | str` | |
+ error[lint:invalid-parameter-default] parso/grammar.py:53:15: Default value of type `None` is not assignable to annotated parameter type `PathLike[Unknown] | str` | |
- error[lint:invalid-parameter-default] parso/grammar.py:57:15: Default value of type `None` is not assignable to annotated parameter type `PathLike | str` | |
+ error[lint:invalid-parameter-default] parso/grammar.py:57:15: Default value of type `None` is not assignable to annotated parameter type `PathLike[Unknown] | str` | |
+ error[lint:invalid-parameter-default] parso/pgen2/generator.py:61:46: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[DFAState[Unknown]]` | |
- error[lint:invalid-argument-type] parso/python/diff.py:884:35: Argument to this function is incorrect: Expected `tuple[int, int]`, found `tuple` | |
+ error[lint:invalid-argument-type] parso/python/diff.py:884:35: Argument to this function is incorrect: Expected `tuple[int, int]`, found `tuple[Unknown, ...]` | |
- error[lint:invalid-argument-type] parso/python/tokenize.py:230:42: Argument to this function is incorrect: Expected `tuple[str]`, found `set` | |
+ error[lint:invalid-argument-type] parso/python/tokenize.py:230:42: Argument to this function is incorrect: Expected `tuple[str]`, found `set[Unknown]` | |
- error[lint:invalid-parameter-default] parso/python/tokenize.py:367:5: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] parso/python/tokenize.py:367:5: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
+ error[lint:invalid-return-type] parso/utils.py:68:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-return-type] parso/utils.py:70:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[str | @Todo(Support for `typing.TypeAlias`)]` | |
- Found 86 diagnostics | |
+ Found 89 diagnostics | |
pytest-robotframework (https://github.com/detachhead/pytest-robotframework) | |
+ error[lint:no-matching-overload] pytest_robotframework/__init__.py:302:22: No overload of bound method `__init__` matches arguments | |
- error[lint:unresolved-attribute] pytest_robotframework/_internal/pytest/plugin.py:452:21: Unresolved attribute `_stream` on type `_RedirectStream`. | |
+ error[lint:unresolved-attribute] pytest_robotframework/_internal/pytest/plugin.py:452:21: Unresolved attribute `_stream` on type `_RedirectStream[IO[str]]`. | |
- error[lint:type-assertion-failure] tests/type_tests.py:41:9: Actual type `(...) -> Unknown` is not the same as asserted type `() -> @Todo(specialized non-generic class)` | |
+ error[lint:type-assertion-failure] tests/type_tests.py:41:9: Actual type `(...) -> Unknown` is not the same as asserted type `() -> AbstractContextManager[None, bool | None]` | |
- error[lint:type-assertion-failure] tests/type_tests.py:49:9: Actual type `(...) -> Unknown` is not the same as asserted type `() -> @Todo(specialized non-generic class)` | |
+ error[lint:type-assertion-failure] tests/type_tests.py:49:9: Actual type `(...) -> Unknown` is not the same as asserted type `() -> _GeneratorContextManager[None]` | |
- Found 349 diagnostics | |
+ Found 350 diagnostics | |
paroxython (https://github.com/laowantong/paroxython) | |
- error[lint:invalid-return-type] paroxython/filter_programs.py:452:10: Function can implicitly return `None`, which is not assignable to return type `Iterator` | |
+ error[lint:invalid-return-type] paroxython/filter_programs.py:452:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:no-matching-overload] paroxython/map_taxonomy.py:168:47: No overload of function `dirname` matches arguments | |
+ error[lint:no-matching-overload] paroxython/parse_program.py:79:26: No overload of function `dirname` matches arguments | |
- Found 20 diagnostics | |
+ Found 22 diagnostics | |
bidict (https://github.com/jab/bidict) | |
+ error[lint:non-subscriptable] bidict/_typing.py:34:39: Cannot subscript object of type `Literal[Iterable[tuple[KT, VT]]]` with no `__class_getitem__` method | |
- Found 16 diagnostics | |
+ Found 17 diagnostics | |
nionutils (https://github.com/nion-software/nionutils) | |
- error[lint:call-non-callable] nion/utils/Geometry.py:266:19: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] nion/utils/Geometry.py:267:26: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:230:59: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `tuple[Literal[1]]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:230:65: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["0e+00"]]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:283:55: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:283:75: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:283:95: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:290:82: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] nion/utils/Geometry.py:290:95: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown, ...]` | |
- error[lint:call-non-callable] nion/utils/ListModel.py:292:31: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] nion/utils/ListModel.py:293:24: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-return-type] nion/utils/ListModel.py:33:60: Return type does not match returned value: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] nion/utils/ListModel.py:983:16: Return type does not match returned value: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] nion/utils/Selection.py:102:16: Return type does not match returned value: Expected `Sequence[int]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] nion/utils/Stream.py:550:53: Argument to this function is incorrect: Expected `Queue[ValueChange[Unknown]]`, found `Queue[ValueChange[T]]` | |
+ error[lint:invalid-argument-type] nion/utils/test/Stream_test.py:43:74: Argument to this function is incorrect: Expected `Sequence[AbstractStream[Any]]`, found `list[Unknown]` | |
- Found 35 diagnostics | |
+ Found 43 diagnostics | |
more-itertools (https://github.com/more-itertools/more-itertools) | |
- error[lint:unsupported-operator] more_itertools/more.pyi:161:18: Operator `|` is unsupported between objects of type `Literal[type]` and `GenericAlias` | |
+ error[lint:unsupported-operator] more_itertools/more.pyi:161:18: Operator `|` is unsupported between objects of type `Literal[type]` and `Literal[tuple[@Todo(Generic tuple specializations), ...]]` | |
- error[lint:inconsistent-mro] more_itertools/more.pyi:163:1: Cannot create a consistent method resolution order (MRO) for class `_SizedIterable` with bases list `[@Todo(`Protocol[]` subscript), <class 'Sized'>, <class 'Iterable'>]` | |
- error[lint:inconsistent-mro] more_itertools/more.pyi:166:1: Cannot create a consistent method resolution order (MRO) for class `_SizedReversible` with bases list `[@Todo(`Protocol[]` subscript), <class 'Sized'>, <class 'Reversible'>]` | |
- Found 63 diagnostics | |
+ Found 61 diagnostics | |
beartype (https://github.com/beartype/beartype) | |
- error[lint:unsupported-operator] beartype/_cave/_cavemap.py:144:18: Operator `in` is not supported for types `type` and `str`, in comparing `type` with `(str & tuple & ~type & ~AlwaysFalsy) | (@Todo(Inference of subscript on special form) & tuple & ~type & ~AlwaysFalsy)` | |
+ error[lint:unsupported-operator] beartype/_cave/_cavemap.py:144:18: Operator `in` is not supported for types `type` and `str`, in comparing `type` with `(str & tuple[Unknown, ...] & ~type & ~AlwaysFalsy) | (@Todo(Inference of subscript on special form) & tuple[Unknown, ...] & ~type & ~AlwaysFalsy)` | |
- warning[lint:unused-ignore-comment] beartype/_check/error/_pep/pep484585/errpep484585mapping.py:120:59: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-type-form] beartype/_data/hint/datahintpep.py:161:26: Variable of type `_SpecialForm` is not allowed in a type expression | |
+ error[lint:invalid-type-form] beartype/_data/hint/datahintpep.py:175:26: Variable of type `_SpecialForm` is not allowed in a type expression | |
+ error[lint:unresolved-attribute] beartype/_data/hint/pep/datapeprepr.py:331:36: Type `_T_co` has no attribute `name` | |
+ error[lint:no-matching-overload] beartype/_util/error/utilerrwarn.py:87:39: No overload of function `dirname` matches arguments | |
+ error[lint:invalid-argument-type] beartype/_util/hint/pep/proposal/pep484585/generic/pep484585genget.py:369:28: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] beartype/_util/kind/map/utilmapset.py:84:36: Argument to this function is incorrect: Expected `Sequence[Mapping[Unknown, Unknown]]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] beartype/claw/_importlib/clawimppath.py:142:23: Argument to this function is incorrect: Expected `(str, /) -> PathEntryFinderProtocol`, found `Unknown | None` | |
+ error[lint:invalid-return-type] beartype/door/_cls/doorsuper.py:325:27: Function can implicitly return `None`, which is not assignable to return type `Iterable[TypeHint[Unknown]]` | |
- Found 575 diagnostics | |
+ Found 582 diagnostics | |
git-revise (https://github.com/mystor/git-revise) | |
+ error[lint:invalid-argument-type] gitrevise/merge.py:59:37: Argument to this function is incorrect: Expected `Sequence[Commit] | None`, found `list[Unknown]` | |
+ warning[lint:possibly-unbound-attribute] gitrevise/merge.py:90:20: Attribute `decode` on type `Unknown | _S` is possibly unbound | |
+ error[lint:invalid-argument-type] gitrevise/odb.py:336:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `tuple[Unknown, Literal["--status-fd=2"], Literal["-bsau"], Unknown]` | |
+ error[lint:no-matching-overload] gitrevise/tui.py:261:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] gitrevise/utils.py:294:27: Argument to this function is incorrect: Expected `Sequence[Commit] | None`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] gitrevise/utils.py:319:9: Object of type `tuple[str, Literal["-ec"], Literal["exec \"$0\" \"$@\""], @Todo(starred expression)]` is not assignable to `Sequence[Any]` | |
- Found 16 diagnostics | |
+ Found 22 diagnostics | |
python-chess (https://github.com/niklasf/python-chess) | |
- error[lint:invalid-return-type] chess/engine.py:2964:16: Return type does not match returned value: Expected `InfoDict | list`, found `_T` | |
+ error[lint:invalid-return-type] chess/engine.py:2964:16: Return type does not match returned value: Expected `InfoDict | list[Unknown]`, found `_T` | |
- error[lint:invalid-return-type] chess/engine.py:3065:16: Return type does not match returned value: Expected `list`, found `_T` | |
+ error[lint:invalid-return-type] chess/engine.py:3065:16: Return type does not match returned value: Expected `list[Unknown]`, found `_T` | |
- warning[lint:unused-ignore-comment] chess/pgn.py:529:37: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] chess/pgn.py:533:77: Unused blanket `type: ignore` directive | |
- error[lint:call-non-callable] chess/polyglot.py:256:44: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)]` is not callable on object of type `list` | |
+ error[lint:call-non-callable] chess/polyglot.py:256:44: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]]` is not callable on object of type `list[Unknown]` | |
- error[lint:call-non-callable] chess/polyglot.py:258:42: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)]` is not callable on object of type `list` | |
+ error[lint:call-non-callable] chess/polyglot.py:258:42: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]]` is not callable on object of type `list[Unknown]` | |
- warning[lint:unused-ignore-comment] chess/svg.py:446:70: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] chess/svg.py:448:33: Unused blanket `type: ignore` directive | |
- Found 60 diagnostics | |
+ Found 56 diagnostics | |
pyinstrument (https://github.com/joerick/pyinstrument) | |
- error[lint:unsupported-operator] pyinstrument/__main__.py:52:31: Operator `+` is unsupported between objects of type `@Todo(specialized non-generic class) | None` and `@Todo(specialized non-generic class) | None` | |
+ error[lint:unsupported-operator] pyinstrument/__main__.py:52:31: Operator `+` is unsupported between objects of type `list[str] | None` and `list[str] | None` | |
- warning[lint:call-possibly-unbound-method] pyinstrument/__main__.py:53:9: Method `__getitem__` of type `@Todo(specialized non-generic class) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] pyinstrument/__main__.py:53:9: Method `__getitem__` of type `list[str] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] pyinstrument/__main__.py:54:9: Method `__getitem__` of type `@Todo(specialized non-generic class) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] pyinstrument/__main__.py:54:9: Method `__getitem__` of type `list[str] | None` is possibly unbound | |
+ error[lint:unsupported-operator] pyinstrument/__main__.py:342:20: Operator `+` is unsupported between objects of type `list[Unknown]` and `Unknown | list[str]` | |
- error[lint:not-iterable] pyinstrument/__main__.py:487:32: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] pyinstrument/__main__.py:487:32: Object of type `list[str] | None` may not be iterable | |
+ error[lint:no-matching-overload] pyinstrument/__main__.py:612:5: No overload of bound method `sort` matches arguments | |
+ error[lint:invalid-return-type] pyinstrument/frame.py:267:16: Return type does not match returned value: Expected `Sequence[Frame]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-return-type] pyinstrument/frame.py:374:16: Return type does not match returned value: Expected `Sequence[Frame]`, found `tuple[Unknown, ...]` | |
+ error[lint:unsupported-operator] pyinstrument/magic/magic.py:315:13: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `str | None` | |
+ error[lint:unsupported-operator] pyinstrument/processors.py:35:32: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["<frozen importlib._bootstrap"]` with `str | None` | |
+ error[lint:no-matching-overload] pyinstrument/renderers/console.py:154:27: No overload of function `split` matches arguments | |
+ error[lint:invalid-argument-type] pyinstrument/session.py:109:13: Argument to this function is incorrect: Expected `list[str]`, found `Unknown | None` | |
- Found 104 diagnostics | |
+ Found 112 diagnostics | |
attrs (https://github.com/python-attrs/attrs) | |
+ error[lint:invalid-assignment] src/attr/_make.py:1559:5: Object of type `tuple[Unknown, ...]` is not assignable to `list[Unknown]` | |
- error[lint:invalid-assignment] src/attr/exceptions.py:20:5: Object of type `list` is not assignable to `tuple[str]` | |
+ error[lint:invalid-assignment] src/attr/exceptions.py:20:5: Object of type `list[Unknown]` is not assignable to `tuple[str]` | |
- error[lint:invalid-argument-type] tests/test_converters.py:350:21: Argument to this function is incorrect: Expected `str | int`, found `list` | |
+ error[lint:invalid-argument-type] tests/test_converters.py:350:21: Argument to this function is incorrect: Expected `str | int`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/test_next_gen.py:146:29: Argument to this function is incorrect: Expected `list`, found `Literal[1]` | |
+ error[lint:invalid-argument-type] tests/test_next_gen.py:146:29: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal[1]` | |
- error[lint:invalid-argument-type] tests/test_next_gen.py:146:48: Argument to this function is incorrect: Expected `list`, found `Literal[1]` | |
+ error[lint:invalid-argument-type] tests/test_next_gen.py:146:48: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal[1]` | |
- error[lint:invalid-argument-type] tests/test_next_gen.py:148:26: Argument to this function is incorrect: Expected `list`, found `Literal[-1]` | |
+ error[lint:invalid-argument-type] tests/test_next_gen.py:148:26: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal[-1]` | |
- Found 652 diagnostics | |
+ Found 653 diagnostics | |
mypy-protobuf (https://github.com/dropbox/mypy-protobuf) | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:122:45: Type `_T` has no attribute `name` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:123:45: Type `_T` has no attribute `name` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:131:40: Type `_T` has no attribute `name` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:132:45: Type `_T` has no attribute `name` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:133:39: Type `_T` has no attribute `name` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:134:31: Type `_T` has no attribute `nested_type` | |
+ error[lint:unresolved-attribute] mypy_protobuf/main.py:135:28: Type `_T` has no attribute `enum_type` | |
- Found 82 diagnostics | |
+ Found 89 diagnostics | |
pyp (https://github.com/hauntsaninja/pyp) | |
- warning[lint:unused-ignore-comment] pyp.py:597:30: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] pyp.py:598:34: Unused blanket `type: ignore` directive | |
+ error[lint:unresolved-attribute] pyp.py:669:25: Unresolved attribute `colno` on type `FrameSummary`. | |
+ error[lint:no-matching-overload] pyp.py:749:12: No overload of bound method `parse_args` matches arguments | |
- warning[lint:unused-ignore-comment] pyp.py:668:63: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] pyp.py:670:53: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] pyp.py:672:62: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] pyp.py:673:53: Unused blanket `type: ignore` directive | |
- Found 17 diagnostics | |
+ Found 13 diagnostics | |
anyio (https://github.com/agronholm/anyio) | |
- error[lint:unresolved-attribute] src/anyio/_backends/_asyncio.py:854:37: Type `(...) -> @Todo(specialized non-generic class)` has no attribute `__qualname__` | |
+ error[lint:unresolved-attribute] src/anyio/_backends/_asyncio.py:854:37: Type `(...) -> Awaitable[Any]` has no attribute `__qualname__` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:1220:38: Argument to this function is incorrect: Expected `tuple[str, int, int, int] | tuple[str, int]`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...]` | |
- warning[lint:unused-ignore-comment] src/anyio/_backends/_asyncio.py:1131:52: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/anyio/_backends/_asyncio.py:1132:53: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/anyio/_backends/_asyncio.py:1133:53: Unused blanket `type: ignore` directive | |
+ error[lint:call-non-callable] src/anyio/_backends/_asyncio.py:2223:49: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/anyio/_backends/_asyncio.py:2223:49: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] src/anyio/_backends/_asyncio.py:2434:26: Object of type `GenericAlias` is not callable | |
- error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2469:41: Argument to this function is incorrect: Expected `tuple[Context, (...) -> Unknown, tuple, Future, CancelScope] | None`, found `tuple[Context, (...) -> T_Retval, @Todo(full tuple[...] support), Unknown, CancelScope | None]` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2469:41: Argument to this function is incorrect: Expected `tuple[Context, (...) -> Unknown, tuple[Unknown, ...], Future[Unknown], CancelScope] | None`, found `tuple[Context, (...) -> T_Retval, @Todo(full tuple[...] support), Future[T_Retval], CancelScope | None]` | |
+ error[lint:no-matching-overload] src/anyio/_backends/_asyncio.py:2590:19: No overload of bound method `create_connection` matches arguments | |
+ error[lint:no-matching-overload] src/anyio/_backends/_asyncio.py:2590:19: No overload of bound method `create_connection` matches arguments | |
+ error[lint:no-matching-overload] src/anyio/_backends/_asyncio.py:2590:19: No overload of bound method `create_connection` matches arguments | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2635:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2635:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2635:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2636:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2636:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2636:13: Argument to this function is incorrect: Expected `tuple[str, int] | str | None`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` | |
- warning[lint:unused-ignore-comment] src/anyio/_backends/_asyncio.py:2889:44: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/anyio/_backends/_asyncio.py:2700:53: Argument to this function is incorrect: Expected `tuple[str, int] | tuple[str, int, int, int]`, found `Unknown | tuple[@Todo(Generic tuple specializations), ...]` | |
- error[lint:invalid-return-type] src/anyio/_backends/_trio.py:553:32: Function can implicitly return `None`, which is not assignable to return type `tuple[bytes, Unknown]` | |
+ error[lint:invalid-return-type] src/anyio/_backends/_trio.py:553:32: Function can implicitly return `None`, which is not assignable to return type `tuple[bytes, Unknown | tuple[@Todo(Generic tuple specializations), ...]]` | |
+ error[lint:invalid-return-type] src/anyio/_backends/_trio.py:1326:16: Return type does not match returned value: Expected `Sequence[TaskInfo]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] src/anyio/_core/_contextmanagers.py:72:16: Return type does not match returned value: Expected `_T_co`, found `object` | |
+ warning[lint:possibly-unbound-attribute] src/anyio/_core/_contextmanagers.py:92:32: Attribute `__exit__` on type `AbstractContextManager[object, bool | None] | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/anyio/_core/_contextmanagers.py:184:38: Attribute `__aexit__` on type `AbstractAsyncContextManager[object, bool | None] | None` is possibly unbound | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:38:42: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:41:48: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:95:68: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:124:47: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:127:60: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
- error[lint:unsupported-operator] src/anyio/_core/_contextmanagers.py:189:46: Operator `|` is unsupported between objects of type `Literal[bool]` and `None` | |
+ error[lint:invalid-return-type] src/anyio/_core/_fileio.py:360:16: Return type does not match returned value: Expected `Sequence[Path]`, found `tuple[Unknown, ...]` | |
+ error[lint:no-matching-overload] src/anyio/_core/_sockets.py:271:12: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] src/anyio/_core/_sockets.py:352:26: Argument to this function is incorrect: Expected `Sequence[Listener[T_Stream]]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] src/anyio/_core/_sockets.py:535:19: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-parameter-default] src/anyio/_core/_subprocesses.py:35:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-parameter-default] src/anyio/_core/_subprocesses.py:139:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-argument-type] src/anyio/from_thread.py:236:35: Argument to this function is incorrect: Expected `T_Retval`, found `@Todo(generic `typing.Awaitable` type) | Awaitable[T_Retval] | T_Retval` | |
- error[lint:call-non-callable] src/anyio/pytest_plugin.py:210:27: Object of type `GenericAlias` is not callable | |
+ error[lint:unresolved-attribute] src/anyio/to_interpreter.py:140:9: Type `_T` has no attribute `destroy` | |
- Found 143 diagnostics | |
+ Found 156 diagnostics | |
aioredis (https://github.com/aio-libs/aioredis) | |
+ error[lint:invalid-assignment] aioredis/client.py:3430:13: Object of type `KeysView[Unknown]` is not assignable to `Sequence[Unknown] | AbstractSet[AnyKeyT]` | |
+ error[lint:invalid-assignment] aioredis/client.py:3432:13: Object of type `(Sequence[@Todo(Inference of subscript on special form)] & ~Mapping[Unknown, Unknown]) | (Mapping[AnyKeyT, int | float] & ~Mapping[Unknown, Unknown])` is not assignable to `Sequence[Unknown] | AbstractSet[AnyKeyT]` | |
+ error[lint:invalid-assignment] aioredis/client.py:4701:9: Object of type `(Sequence[@Todo(Inference of subscript on special form)] & ~AlwaysFalsy) | list[Unknown]` is not assignable to `Sequence[@Todo(Inference of subscript on special form)] | None` | |
+ error[lint:invalid-argument-type] aioredis/client.py:4705:22: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[@Todo(Inference of subscript on special form)] | None` | |
+ error[lint:invalid-argument-type] aioredis/client.py:4710:49: Argument to this function is incorrect: Expected `Sized`, found `Sequence[@Todo(Inference of subscript on special form)] | None` | |
+ error[lint:invalid-argument-type] aioredis/client.py:4712:55: Argument to this function is incorrect: Expected `Sized`, found `Sequence[@Todo(Inference of subscript on special form)] | None` | |
+ error[lint:invalid-argument-type] aioredis/client.py:4718:55: Argument to this function is incorrect: Expected `Sized`, found `Sequence[@Todo(Inference of subscript on special form)] | None` | |
- error[lint:invalid-exception-caught] aioredis/connection.py:283:16: Cannot catch object of type `Unknown | tuple` in an exception handler (must be a `BaseException` subclass or a tuple of `BaseException` subclasses) | |
+ error[lint:invalid-exception-caught] aioredis/connection.py:283:16: Cannot catch object of type `Unknown | tuple[Unknown, ...]` in an exception handler (must be a `BaseException` subclass or a tuple of `BaseException` subclasses) | |
- error[lint:invalid-exception-caught] aioredis/connection.py:511:16: Cannot catch object of type `Unknown | tuple` in an exception handler (must be a `BaseException` subclass or a tuple of `BaseException` subclasses) | |
+ error[lint:invalid-exception-caught] aioredis/connection.py:511:16: Cannot catch object of type `Unknown | tuple[Unknown, ...]` in an exception handler (must be a `BaseException` subclass or a tuple of `BaseException` subclasses) | |
+ error[lint:invalid-return-type] aioredis/sentinel.py:244:16: Return type does not match returned value: Expected `Sequence[tuple[Unknown, Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] aioredis/sentinel.py:258:16: Return type does not match returned value: Expected `Sequence[tuple[Unknown, Unknown]]`, found `list[Unknown]` | |
- Found 29 diagnostics | |
+ Found 38 diagnostics | |
httpx-caching (https://github.com/johtso/httpx-caching) | |
+ error[lint:invalid-return-type] httpx_caching/_policy.py:131:16: Return type does not match returned value: Expected `Generator[@Todo(Inference of subscript on special form), Response, tuple[Response, @Todo(functional `Enum` syntax)]]`, found `tuple[@Todo(Generic `typing.Generator` type) & ~AlwaysFalsy, Unknown]` | |
+ error[lint:invalid-return-type] httpx_caching/_policy.py:141:12: Return type does not match returned value: Expected `Generator[@Todo(Inference of subscript on special form), Response, tuple[Response, @Todo(functional `Enum` syntax)]]`, found `tuple[@Todo(Generic `typing.Generator` type), @Todo(Generic `typing.Generator` type)]` | |
- Found 33 diagnostics | |
+ Found 35 diagnostics | |
kornia (https://github.com/kornia/kornia) | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:63: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:63: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:69: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:69: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:77: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:77: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:84: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/gaussian_illumination.py:162:84: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:120:61: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:120:61: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:120:67: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:120:67: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:227:67: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:227:67: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:227:73: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/linear_illumination.py:227:73: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/salt_pepper_noise.py:127:56: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/salt_pepper_noise.py:127:56: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
- error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/salt_pepper_noise.py:127:64: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-argument-type] kornia/augmentation/_2d/intensity/salt_pepper_noise.py:127:64: Argument to this function is incorrect: Expected `tuple[int | float, int | float]`, found `(int & tuple[Unknown, ...] & ~float) | (tuple[int | float, int | float] & ~float) | tuple[float, float] | tuple[@Todo(map_with_boundness: intersections with negative contributions), @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-parameter-default] kornia/augmentation/container/augment.py:229:9: Default value of type `tuple[@Todo(Attribute access on enum classes)]` is not assignable to annotated parameter type `Sequence[str] | Sequence[int] | Sequence[DataKey] | None` | |
- error[lint:not-iterable] kornia/augmentation/container/image.py:380:18: Object of type `dict[Unknown, Unknown] | list | None` may not be iterable | |
+ error[lint:not-iterable] kornia/augmentation/container/image.py:380:18: Object of type `dict[Unknown, Unknown] | list[Unknown] | None` may not be iterable | |
- error[lint:unsupported-operator] kornia/augmentation/container/image.py:382:10: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["output_size"]` with `dict[Unknown, Unknown] | list | None` | |
+ error[lint:unsupported-operator] kornia/augmentation/container/image.py:382:10: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["output_size"]` with `dict[Unknown, Unknown] | list[Unknown] | None` | |
- error[lint:call-non-callable] kornia/augmentation/container/image.py:383:17: Method `__getitem__` of type `(bound method dict[Unknown, Unknown].__getitem__(key: Unknown, /) -> Unknown) | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `dict[Unknown, Unknown] | list | None` | |
+ error[lint:call-non-callable] kornia/augmentation/container/image.py:383:17: Method `__getitem__` of type `(bound method dict[Unknown, Unknown].__getitem__(key: Unknown, /) -> Unknown) | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `dict[Unknown, Unknown] | list[Unknown] | None` | |
- error[lint:call-non-callable] kornia/augmentation/container/image.py:388:32: Method `__getitem__` of type `(bound method dict[Unknown, Unknown].__getitem__(key: Unknown, /) -> Unknown) | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `dict[Unknown, Unknown] | list | None` | |
+ error[lint:call-non-callable] kornia/augmentation/container/image.py:388:32: Method `__getitem__` of type `(bound method dict[Unknown, Unknown].__getitem__(key: Unknown, /) -> Unknown) | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `dict[Unknown, Unknown] | list[Unknown] | None` | |
- error[lint:invalid-return-type] kornia/augmentation/container/ops.py:50:16: Return type does not match returned value: Expected `dict[Unknown, Unknown]`, found `dict[Unknown, Unknown] | list | None` | |
+ error[lint:invalid-return-type] kornia/augmentation/container/ops.py:50:16: Return type does not match returned value: Expected `dict[Unknown, Unknown]`, found `dict[Unknown, Unknown] | list[Unknown] | None` | |
- error[lint:invalid-return-type] kornia/augmentation/container/ops.py:58:16: Return type does not match returned value: Expected `list`, found `dict[Unknown, Unknown] | list | None` | |
+ error[lint:invalid-return-type] kornia/augmentation/container/ops.py:58:16: Return type does not match returned value: Expected `list[Unknown]`, found `dict[Unknown, Unknown] | list[Unknown] | None` | |
- warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:51:8: Attribute `dim` on type `Unknown | int | float | tuple[int | float, int | float] | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:51:8: Attribute `dim` on type `Unknown | int | float | tuple[int | float, int | float] | list[Unknown]` is possibly unbound | |
+ error[lint:unsupported-operator] kornia/augmentation/utils/param_validation.py:52:12: Operator `<` is not supported for types `list[Unknown]` and `int`, in comparing `Unknown | int | float | tuple[int | float, int | float] | list[Unknown]` with `Literal[0]` | |
- warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:24: Attribute `repeat` on type `Unknown | int | float | tuple[int | float, int | float] | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:24: Attribute `repeat` on type `Unknown | int | float | tuple[int | float, int | float] | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:70: Attribute `device` on type `Unknown | int | float | tuple[int | float, int | float] | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:70: Attribute `device` on type `Unknown | int | float | tuple[int | float, int | float] | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:91: Attribute `dtype` on type `Unknown | int | float | tuple[int | float, int | float] | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/augmentation/utils/param_validation.py:59:91: Attribute `dtype` on type `Unknown | int | float | tuple[int | float, int | float] | list[Unknown]` is possibly unbound | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:307:21: Argument to this function is incorrect: Expected `int | float`, found `Unknown | (int & ~list[Unknown]) | (float & ~list[Unknown]) | (list[int | float] & ~list[Unknown])` | |
+ error[lint:invalid-parameter-default] kornia/contrib/models/tiny_vit.py:353:9: Default value of type `tuple[Literal[96], Literal[192], Literal[384], Literal[768]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-parameter-default] kornia/contrib/models/tiny_vit.py:354:9: Default value of type `tuple[Literal[2], Literal[2], Literal[6], Literal[2]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-parameter-default] kornia/contrib/models/tiny_vit.py:355:9: Default value of type `tuple[Literal[3], Literal[6], Literal[12], Literal[24]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-parameter-default] kornia/contrib/models/tiny_vit.py:356:9: Default value of type `tuple[Literal[7], Literal[7], Literal[14], Literal[7]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:507:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:508:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:509:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:510:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:532:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:533:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:534:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:535:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:557:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:558:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:559:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] kornia/contrib/models/tiny_vit.py:560:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] kornia/core/mixin/image_module.py:193:20: Attribute `detach` on type `Unknown | list | tuple[Unknown]` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/core/mixin/image_module.py:193:20: Attribute `detach` on type `Unknown | list[Unknown] | tuple[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/core/module.py:204:20: Attribute `detach` on type `Unknown | tuple[Unknown]` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/core/module.py:204:20: Attribute `detach` on type `Unknown | list[Unknown] | tuple[Unknown]` is possibly unbound | |
+ error[lint:invalid-argument-type] kornia/enhance/adjust.py:370:22: Argument to this function is incorrect: Expected `Iterable[object]`, found `bool | (bool & Unknown) | Unknown` | |
- error[lint:invalid-return-type] kornia/feature/dedode/transformer/dinov2.py:309:20: Return type does not match returned value: Expected `tuple[Unknown | tuple[Unknown]]`, found `tuple` | |
+ error[lint:invalid-return-type] kornia/feature/dedode/transformer/dinov2.py:309:20: Return type does not match returned value: Expected `tuple[Unknown | tuple[Unknown]]`, found `tuple[Unknown, ...]` | |
- error[lint:invalid-return-type] kornia/feature/dedode/transformer/dinov2.py:310:16: Return type does not match returned value: Expected `tuple[Unknown | tuple[Unknown]]`, found `tuple` | |
+ error[lint:invalid-return-type] kornia/feature/dedode/transformer/dinov2.py:310:16: Return type does not match returned value: Expected `tuple[Unknown | tuple[Unknown]]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-parameter-default] kornia/feature/lightglue.py:483:46: Default value of type `tuple[Literal[256], Literal[512], Literal[768], Literal[1024], Literal[1280], Literal[1536]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-return-type] kornia/geometry/line.py:70:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:invalid-parameter-default] kornia/losses/ms_ssim.py:77:9: Default value of type `tuple[float, float, float, float, float]` is not assignable to annotated parameter type `Sequence[int | float]` | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:38: Attribute `shape` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:54: Attribute `device` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kornia/utils/draw.py:379:71: Attribute `dtype` on type `Unknown | list[Unknown]` is possibly unbound | |
- Found 1004 diagnostics | |
+ Found 1027 diagnostics | |
downforeveryone (https://github.com/rpdelaney/downforeveryone) | |
+ error[lint:invalid-argument-type] tests/test_isup/test_handle_response.py:7:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["response"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_isup/test_handle_response.py:23:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["fake_response"], Literal["expected_message"], Literal["expected_status"]]` | |
+ error[lint:invalid-argument-type] tests/test_isup/test_main.py:40:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["message"], Literal["exit_code"], Literal["stdout"], Literal["stderr"]]` | |
- Found 5 diagnostics | |
+ Found 8 diagnostics | |
starlette (https://github.com/encode/starlette) | |
+ error[lint:invalid-argument-type] starlette/authentication.py:55:54: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] starlette/authentication.py:69:52: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] starlette/authentication.py:86:52: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-assignment] starlette/datastructures.py:150:13: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:unsupported-operator] starlette/datastructures.py:262:21: Operator `+` is unsupported between objects of type `list[tuple[Unknown, Unknown]]` and `list[tuple[Unknown, Unknown]]` | |
+ error[lint:invalid-argument-type] starlette/middleware/__init__.py:17:26: `ParamSpec` is not a valid argument to subscripted `typing.Protocol` | |
+ error[lint:invalid-parameter-default] starlette/middleware/cors.py:19:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] starlette/middleware/cors.py:20:9: Default value of type `tuple[Literal["GET"]]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] starlette/middleware/cors.py:21:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] starlette/middleware/cors.py:24:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-assignment] starlette/middleware/cors.py:28:13: Object of type `Unknown | tuple[Literal["DELETE"], Literal["GET"], Literal["HEAD"], Literal["OPTIONS"], Literal["PATCH"], Literal["POST"], Literal["PUT"]]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] starlette/middleware/cors.py:58:9: Object of type `list[SupportsRichComparisonT]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] starlette/middleware/trustedhost.py:20:13: Object of type `list[Unknown]` is not assignable to `Sequence[str] | None` | |
+ error[lint:not-iterable] starlette/middleware/trustedhost.py:22:24: Object of type `Sequence[str] | None` may not be iterable | |
+ error[lint:no-matching-overload] starlette/middleware/trustedhost.py:27:30: No overload of bound method `__init__` matches arguments | |
+ error[lint:unsupported-operator] starlette/middleware/trustedhost.py:28:26: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["*"]` with `Sequence[str] | None` | |
+ error[lint:invalid-assignment] starlette/routing.py:65:5: Object of type `((Request, /) -> Awaitable[Response] | Response) | partial[Unknown]` is not assignable to `(Request, /) -> Awaitable[Response]` | |
+ error[lint:invalid-assignment] starlette/testclient.py:241:17: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:76:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:83:5: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:149:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:150:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:168:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:168:52: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:186:21: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:246:21: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:246:62: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:276:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:277:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:314:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:315:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:334:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:335:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:361:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:362:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:431:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:435:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:607:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:608:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:636:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:637:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:665:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:666:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:691:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:692:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:723:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:724:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:752:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:753:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:841:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:842:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:869:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:870:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:1036:30: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_base.py:1084:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:17:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:18:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:78:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:79:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:129:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:130:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:178:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:179:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:219:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:220:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:254:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:255:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:278:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:285:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:307:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:308:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:379:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:380:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:414:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:415:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:435:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:436:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:455:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:456:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:472:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:473:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:489:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:492:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:508:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_cors.py:511:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_errors.py:98:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:17:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:18:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:35:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:36:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:55:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:56:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:78:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:79:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:101:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:102:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:126:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:127:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:149:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_gzip.py:150:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_https_redirect.py:15:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_https_redirect.py:16:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:30:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:35:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:63:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:67:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:87:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:92:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:124:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:127:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:129:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:142:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:146:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:161:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:165:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:183:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_session.py:187:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_trusted_host.py:15:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_trusted_host.py:16:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_trusted_host.py:43:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_trusted_host.py:44:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:100:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:107:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:122:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:135:5: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:268:17: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:276:24: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:287:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:308:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:326:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:344:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:369:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_applications.py:370:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_authentication.py:42:32: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_authentication.py:188:5: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_authentication.py:189:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_authentication.py:342:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_authentication.py:343:5: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_concurrency.py:42:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] tests/test_concurrency.py:52:31: Function can implicitly return `None`, which is not assignable to return type `Iterator[int]` | |
+ error[lint:invalid-argument-type] tests/test_convertors.py:42:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_convertors.py:69:18: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_convertors.py:92:18: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:78:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:111:33: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:297:24: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:298:24: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:299:24: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:299:65: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:300:41: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:302:24: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:305:24: Argument to this function is incorrect: Expected `ImmutableMultiDict[Any, Any] | Mapping[Any, Any] | list[tuple[Any, Any]] | str | bytes`, found `QueryParams` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:381:21: Argument to this function is incorrect: Expected `FormData | Mapping[str, str | UploadFile] | list[tuple[str, str | UploadFile]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:382:21: Argument to this function is incorrect: Expected `FormData | Mapping[str, str | UploadFile] | list[tuple[str, str | UploadFile]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:473:14: Argument to this function is incorrect: Expected `MultiDict | Mapping[Any, Any] | list[tuple[Any, Any]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_endpoints.py:22:14: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_endpoints.py:57:42: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_exceptions.py:59:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:420:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:420:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:448:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:448:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:476:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:476:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:503:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:503:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:530:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:530:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:559:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:559:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:588:23: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:589:13: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:618:23: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:619:13: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:671:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:671:51: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_formparsers.py:709:23: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_formparsers.py:710:13: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_requests.py:632:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_requests.py:632:56: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:119:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:123:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:133:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:325:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:326:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:349:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:375:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:385:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:388:20: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:389:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:393:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:397:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:403:22: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:413:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:417:17: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:426:24: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:431:24: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:499:27: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:533:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:539:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:558:35: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:563:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:572:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:641:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:642:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:643:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:681:26: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:681:52: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:713:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:714:13: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:715:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:739:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:784:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:804:25: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:827:22: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:924:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:929:13: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:936:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:939:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:947:13: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:955:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:964:13: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1031:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1032:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1061:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1064:17: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1068:17: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1073:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1116:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1120:17: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1151:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1163:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1175:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1189:13: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1254:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:1267:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_schemas.py:111:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_schemas.py:117:5: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_schemas.py:128:43: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:60:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:60:36: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:88:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:102:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:116:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:407:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:423:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:437:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:447:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_staticfiles.py:469:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:29:33: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:51:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:81:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:82:9: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:112:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_templates.py:114:17: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_templates.py:159:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:194:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:231:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:270:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:296:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:317:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:339:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:363:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:391:25: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_templates.py:423:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:31:26: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:66:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:129:9: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:172:39: Argument to this function is incorrect: Expected `Sequence[() -> Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:190:35: Argument to this function is incorrect: Expected `Sequence[Middleware] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:310:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:387:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_testclient.py:397:21: Argument to this function is incorrect: Expected `Sequence[BaseRoute] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_websockets.py:408:40: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
- Found 214 diagnostics | |
+ Found 488 diagnostics | |
pyjwt (https://github.com/jpadilla/pyjwt) | |
+ error[lint:invalid-assignment] jwt/api_jws.py:323:13: Object of type `list[Unknown]` is not assignable to `Sequence[str] | None` | |
- Found 188 diagnostics | |
+ Found 189 diagnostics | |
nox (https://github.com/wntrblm/nox) | |
+ error[lint:invalid-return-type] nox/__init__.py:46:12: Return type does not match returned value: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-parameter-default] nox/_decorators.py:75:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:no-matching-overload] nox/_options.py:160:12: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-assignment] nox/_parametrize.py:55:13: Object of type `tuple[()]` is not assignable to `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] nox/_parametrize.py:57:32: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[str] | None` | |
+ error[lint:invalid-assignment] nox/_parametrize.py:60:13: Object of type `list[Unknown]` is not assignable to `Sequence[str] | None` | |
+ error[lint:no-matching-overload] nox/_parametrize.py:62:21: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-assignment] nox/_parametrize.py:142:9: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:unresolved-attribute] nox/_version.py:61:25: Type `expr` has no attribute `id` | |
+ error[lint:no-matching-overload] nox/command.py:84:33: No overload of function `fspath` matches arguments | |
+ error[lint:no-matching-overload] nox/command.py:161:17: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] nox/command.py:189:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] nox/command.py:189:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] nox/command.py:189:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] nox/manifest.py:253:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] nox/manifest.py:270:39: Argument to this function is incorrect: Expected `Mapping[SessionRunner, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] nox/manifest.py:270:39: Argument to this function is incorrect: Expected `Mapping[SessionRunner, Iterable[SessionRunner]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] nox/manifest.py:351:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] nox/manifest.py:371:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] nox/manifest.py:379:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] nox/registry.py:69:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:no-matching-overload] nox/sessions.py:641:16: No overload of function `run` matches arguments | |
+ error[lint:invalid-argument-type] nox/tox_to_nox.py:47:5: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] nox/virtualenv.py:356:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:no-matching-overload] nox/virtualenv.py:384:17: No overload of function `run` matches arguments | |
+ error[lint:no-matching-overload] nox/virtualenv.py:434:9: No overload of function `run` matches arguments | |
+ error[lint:invalid-parameter-default] nox/virtualenv.py:491:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:no-matching-overload] nox/virtualenv.py:581:22: No overload of function `run` matches arguments | |
+ error[lint:no-matching-overload] nox/virtualenv.py:587:19: No overload of function `run` matches arguments | |
+ error[lint:no-matching-overload] nox/virtualenv.py:719:9: No overload of function `run` matches arguments | |
+ error[lint:invalid-parameter-default] nox/virtualenv.py:754:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
- Found 47 diagnostics | |
+ Found 76 diagnostics | |
porcupine (https://github.com/Akuli/porcupine) | |
+ error[lint:invalid-argument-type] porcupine/__main__.py:100:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `(Any & ~AlwaysFalsy) | list[Unknown]` | |
+ error[lint:invalid-parameter-default] porcupine/_logs.py:65:49: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] porcupine/menubar.py:166:19: Argument to this function is incorrect: Expected `list[str]`, found `str` | |
+ error[lint:invalid-argument-type] porcupine/menubar.py:226:57: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] porcupine/menubar.py:229:30: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-assignment] porcupine/pluginloader.py:109:1: Object of type `list[Unknown]` is not assignable to `Sequence[PluginInfo]` | |
+ error[lint:invalid-argument-type] porcupine/pluginloader.py:287:27: Argument to this function is incorrect: Expected `Sequence[_T]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] porcupine/pluginloader.py:298:40: Argument to this function is incorrect: Expected `dict[_T, @Todo(specialized non-generic class)]`, found `dict[PluginInfo, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-argument-type] porcupine/pluginloader.py:298:40: Argument to this function is incorrect: Expected `dict[_T, set[_T]]`, found `dict[PluginInfo, set[PluginInfo]]` | |
+ error[lint:invalid-argument-type] porcupine/pluginloader.py:298:55: Argument to this function is incorrect: Expected `(Sequence[_T], /) -> None`, found `def _handle_circular_dependency(cycle: Sequence[PluginInfo]) -> None` | |
+ error[lint:unresolved-attribute] porcupine/pluginloader.py:299:48: Type `_T` has no attribute `status` | |
+ error[lint:no-matching-overload] porcupine/plugins/editorconfig.py:52:14: No overload of bound method `__init__` matches arguments | |
+ error[lint:unresolved-attribute] porcupine/plugins/editorconfig.py:88:22: Type `_VT` has no attribute `lower` | |
+ warning[lint:possibly-unbound-attribute] porcupine/plugins/filemanager.py:193:31: Attribute `relative_to` on type `Path | None` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] porcupine/plugins/langserver.py:231:16: Attribute `value` on type `@Todo(specialized non-generic class) | str` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] porcupine/plugins/langserver.py:231:16: Attribute `value` on type `list[Unknown | str] | Unknown | str` is possibly unbound | |
+ error[lint:invalid-return-type] porcupine/plugins/langserver.py:234:12: Return type does not match returned value: Expected `str`, found `(list[Unknown | str] & ~list[Unknown]) | (Unknown & ~list[Unknown]) | (str & ~list[Unknown])` | |
+ error[lint:invalid-type-form] porcupine/plugins/run/__init__.py:74:64: Variable of type `Never` is not allowed in a type expression | |
+ error[lint:unresolved-attribute] porcupine/settings.py:965:64: Type `_EnumMemberT` has no attribute `name` | |
- error[lint:no-matching-overload] porcupine/utils.py:471:5: No overload of bound method `bind` matches arguments | |
- Found 112 diagnostics | |
+ Found 126 diagnostics | |
pegen (https://github.com/we-like-parsers/pegen) | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:60:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[Rule]` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:150:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown]` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:160:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown]` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:181:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:218:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:262:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown]` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:277:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown]` | |
+ error[lint:invalid-return-type] src/pegen/grammar.py:407:16: Return type does not match returned value: Expected `AbstractSet[str]`, found `set[Unknown]` | |
+ error[lint:invalid-argument-type] src/pegen/parser_generator.py:245:56: Argument to this function is incorrect: Expected `AbstractSet[str]`, found `dict_keys[Unknown, Unknown]` | |
+ error[lint:unsupported-operator] src/pegen/python_generator.py:279:31: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["LOCATIONS"]` with `Unknown | str | None` | |
+ error[lint:invalid-return-type] src/pegen/sccutils.py:8:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[AbstractSet[str]]` | |
+ error[lint:invalid-return-type] src/pegen/sccutils.py:102:6: Function can implicitly return `None`, which is not assignable to return type `Iterable[list[Unknown]]` | |
- Found 55 diagnostics | |
+ Found 67 diagnostics | |
kopf (https://github.com/nolar/kopf) | |
- error[lint:invalid-assignment] kopf/_cogs/structs/credentials.py:218:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] kopf/_cogs/structs/credentials.py:218:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, list[tuple[Unknown, VaultItem]]]` | |
+ error[lint:invalid-assignment] kopf/_cogs/structs/dicts.py:65:17: Object of type `Any | dict[Any, Any]` is not assignable to `Mapping[str, str]` | |
+ warning[lint:possibly-unbound-attribute] kopf/_cogs/structs/dicts.py:241:25: Attribute `obj` on type `(_T & ~None) | Iterable[_T]` is possibly unbound | |
+ error[lint:no-matching-overload] kopf/_core/actions/invocation.py:113:18: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] kopf/_core/actions/invocation.py:116:18: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-return-type] kopf/_core/actions/lifecycles.py:35:12: Return type does not match returned value: Expected `Sequence[Handler]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] kopf/_core/actions/lifecycles.py:40:12: Return type does not match returned value: Expected `Sequence[Handler]`, found `list[_T] | list[Unknown]` | |
+ error[lint:invalid-return-type] kopf/_core/actions/lifecycles.py:49:12: Return type does not match returned value: Expected `Sequence[Handler]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] kopf/_core/actions/throttlers.py:62:17: No overload of function `next` matches arguments | |
+ warning[lint:possibly-unbound-attribute] kopf/_core/engines/admission.py:340:48: Attribute `reason` on type `Unknown | ResourceHandlerT` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] kopf/_core/engines/admission.py:429:20: Attribute `check` on type `Selector | None` is possibly unbound | |
+ warning[lint:redundant-cast] kopf/_core/engines/posting.py:99:20: Value is already of type `Iterator[Body]` | |
+ warning[lint:redundant-cast] kopf/_core/engines/posting.py:112:20: Value is already of type `Iterator[Body]` | |
+ warning[lint:redundant-cast] kopf/_core/engines/posting.py:125:20: Value is already of type `Iterator[Body]` | |
+ warning[lint:redundant-cast] kopf/_core/engines/posting.py:143:20: Value is already of type `Iterator[Body]` | |
+ error[lint:call-non-callable] kopf/_core/intents/callbacks.py:260:20: Object of type `_FnT` is not callable | |
+ error[lint:call-non-callable] kopf/_core/intents/callbacks.py:266:20: Object of type `_FnT` is not callable | |
+ error[lint:call-non-callable] kopf/_core/intents/callbacks.py:272:24: Object of type `_FnT` is not callable | |
+ error[lint:invalid-assignment] kopf/_core/intents/piggybacking.py:85:5: Object of type `@Todo(map_with_boundness: intersections with negative contributions) | list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-return-type] kopf/_core/intents/registries.py:53:16: Return type does not match returned value: Expected `Sequence[ActivityHandler]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] kopf/_core/intents/registries.py:97:16: Return type does not match returned value: Expected `Sequence[ResourceHandlerT]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] kopf/_core/intents/registries.py:226:16: Return type does not match returned value: Expected `Sequence[ChangingHandler]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] kopf/_core/intents/registries.py:470:16: Object of type `str` is not callable | |
+ error[lint:invalid-return-type] kopf/_core/reactor/inventory.py:67:36: Function can implicitly return `None`, which is not assignable to return type `Iterator[ResourceMemory]` | |
- error[lint:invalid-argument-type] kopf/_core/reactor/queueing.py:215:25: Argument to this function is incorrect: Expected `MutableMapping[@Todo(Support for `typing.GenericAlias` instances in type expressions), Stream]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] kopf/_core/reactor/queueing.py:215:25: Argument to this function is incorrect: Expected `MutableMapping[tuple[@Todo(Generic tuple specializations), ...], Stream]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-argument-type] kopf/_core/reactor/queueing.py:232:13: Argument to this function is incorrect: Expected `MutableMapping[@Todo(Support for `typing.GenericAlias` instances in type expressions), Stream]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] kopf/_core/reactor/queueing.py:232:13: Argument to this function is incorrect: Expected `MutableMapping[tuple[@Todo(Generic tuple specializations), ...], Stream]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-assignment] kopf/_core/reactor/running.py:200:5: Object of type `list[Unknown]` is not assignable to `MutableSequence[Unknown | Task[Any]]` | |
+ error[lint:invalid-argument-type] kopf/_core/reactor/running.py:236:13: Argument to this function is incorrect: Expected `Sequence[Unknown | Task[Any]]`, found `MutableSequence[Unknown | Task[Any]]` | |
+ error[lint:invalid-argument-type] kopf/_core/reactor/subhandling.py:102:32: Argument to this function is incorrect: Expected `ResourceHandlerT`, found `ChangingHandler` | |
+ warning[lint:redundant-cast] kopf/_kits/hierarchies.py:40:16: Value is already of type `Iterator[Unknown]` | |
+ warning[lint:redundant-cast] kopf/_kits/hierarchies.py:77:16: Value is already of type `Iterator[Unknown]` | |
+ warning[lint:redundant-cast] kopf/_kits/hierarchies.py:119:16: Value is already of type `Iterator[Unknown]` | |
+ warning[lint:redundant-cast] kopf/_kits/hierarchies.py:171:16: Value is already of type `Iterator[Unknown]` | |
+ warning[lint:redundant-cast] kopf/_kits/hierarchies.py:224:16: Value is already of type `Iterator[Unknown]` | |
- warning[lint:redundant-cast] kopf/_kits/runner.py:186:16: Value is already of type `Unknown` | |
+ error[lint:unresolved-attribute] kopf/cli.py:35:35: Type `_EnumMemberT` has no attribute `name` | |
- Found 277 diagnostics | |
+ Found 308 diagnostics | |
pybind11 (https://github.com/pybind/pybind11) | |
+ error[lint:no-matching-overload] noxfile.py:67:21: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] noxfile.py:67:21: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] noxfile.py:67:21: No overload of bound method `parse_known_args` matches arguments | |
+ warning[lint:call-possibly-unbound-method] tests/extra_python_package/test_files.py:311:31: Method `__getitem__` of type `Unknown | _S` is possibly unbound | |
+ error[lint:invalid-argument-type] tests/test_docs_advanced_cast_custom.py:25:28: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_docs_advanced_cast_custom.py:26:28: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `tuple[float, int | float]` | |
+ error[lint:invalid-argument-type] tests/test_docs_advanced_cast_custom.py:27:28: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_docs_advanced_cast_custom.py:28:28: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `tuple[Literal[1], Literal[-1]]` | |
+ error[lint:no-matching-overload] tests/test_pytypes.py:778:14: No overload of bound method `__init__` matches arguments | |
- Found 264 diagnostics | |
+ Found 273 diagnostics | |
strawberry (https://github.com/strawberry-graphql/strawberry) | |
+ error[lint:invalid-parameter-default] strawberry/asgi/__init__.py:142:9: Default value of type `tuple[Unknown | Literal["graphql-transport-ws"], Unknown | Literal["graphql-ws"]]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] strawberry/channels/handlers/base.py:84:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] strawberry/channels/handlers/base.py:143:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] strawberry/cli/commands/upgrade/__init__.py:73:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] strawberry/codegen/query_codegen.py:688:33: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/conversion.py:47:38: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~None) | Unknown | None` | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/conversion.py:47:38: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~None) | Unknown | None` | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/conversion.py:47:38: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~None) | Unknown | None` | |
+ error[lint:invalid-parameter-default] strawberry/experimental/pydantic/error_type.py:73:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:unsupported-operator] strawberry/experimental/pydantic/error_type.py:128:26: Operator `+` is unsupported between objects of type `list[Field[Unknown]]` and `list[Field[Unknown]]` | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/object_type.py:101:13: Argument to this function is incorrect: Expected `Sequence[object]`, found `@Todo(map_with_boundness: intersections with negative contributions) | tuple[()]` | |
+ error[lint:invalid-parameter-default] strawberry/experimental/pydantic/object_type.py:127:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/object_type.py:176:13: Argument to this function is incorrect: Expected `set[str]`, found `set[Unknown | _S] | set[Unknown]` | |
+ error[lint:invalid-argument-type] strawberry/experimental/pydantic/object_type.py:193:17: Argument to this function is incorrect: Expected `set[str]`, found `set[Unknown | _S] | set[Unknown]` | |
+ error[lint:unsupported-operator] strawberry/experimental/pydantic/object_type.py:207:26: Operator `+` is unsupported between objects of type `list[Field[Unknown]]` and `list[Field[Unknown]]` | |
+ error[lint:invalid-parameter-default] strawberry/experimental/pydantic/object_type.py:317:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/experimental/pydantic/object_type.py:347:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
- warning[lint:unused-ignore-comment] strawberry/experimental/pydantic/utils.py:39:66: Unused blanket `type: ignore` directive | |
+ warning[lint:possibly-unbound-attribute] strawberry/extensions/query_depth_limiter.py:175:25: Attribute `value` on type `NameNode | None` is possibly unbound | |
+ error[lint:invalid-argument-type] strawberry/fastapi/router.py:104:13: Argument to this function is incorrect: Expected `Sequence[Parameter] | type[_void] | None`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] strawberry/fastapi/router.py:131:9: Default value of type `tuple[Unknown | Literal["graphql-transport-ws"], Unknown | Literal["graphql-ws"]]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:61:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:90:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:118:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:146:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:174:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/federation/field.py:201:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-assignment] strawberry/federation/field.py:222:5: Object of type `list[Unknown]` is not assignable to `Sequence[object] | None` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:225:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:228:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:231:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:234:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:241:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:244:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:247:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:250:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:253:9: Type `Sequence[object] | None` has no attribute `append` | |
+ error[lint:unresolved-attribute] strawberry/federation/field.py:256:9: Type `Sequence[object] | None` has no attribute `extend` | |
+ error[lint:invalid-parameter-default] strawberry/federation/object_type.py:188:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object]` | |
+ error[lint:invalid-parameter-default] strawberry/federation/object_type.py:205:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object]` | |
+ error[lint:invalid-parameter-default] strawberry/federation/object_type.py:217:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object]` | |
- warning[lint:unused-ignore-comment] strawberry/federation/schema.py:274:46: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] strawberry/field_extensions/input_mutation.py:42:17: Argument to this function is incorrect: Expected `Sequence[object]`, found `tuple[Unknown, ...]` | |
- error[lint:not-iterable] strawberry/http/__init__.py:21:52: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] strawberry/http/__init__.py:21:52: Object of type `list[GraphQLError] | None` may not be iterable | |
- warning[lint:unused-ignore-comment] strawberry/printer/printer.py:513:75: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-parameter-default] strawberry/relay/fields.py:388:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-argument-type] strawberry/relay/fields.py:488:9: Argument to this function is incorrect: Expected `Sequence[object]`, found `(Sequence[object] & ~AlwaysFalsy) | tuple[()]` | |
- error[lint:conflicting-declarations] strawberry/relay/types.py:863:21: Conflicting declared types for `edges`: @Todo(specialized non-generic class), @Todo(specialized non-generic class) | |
- error[lint:conflicting-declarations] strawberry/relay/types.py:869:21: Conflicting declared types for `edges`: @Todo(specialized non-generic class), @Todo(specialized non-generic class) | |
+ error[lint:unresolved-attribute] strawberry/schema/schema.py:254:25: Type `type | StrawberryType` has no attribute `__strawberry_definition__` | |
- error[lint:invalid-return-type] strawberry/schema/schema_converter.py:526:24: Return type does not match returned value: Expected `(Any, GraphQLResolveInfo, Unknown, /) -> @Todo(specialized non-generic class) | str | None`, found `((Any, GraphQLResolveInfo, Unknown, /) -> str) | None` | |
+ error[lint:invalid-return-type] strawberry/schema/schema_converter.py:526:24: Return type does not match returned value: Expected `(Any, GraphQLResolveInfo, Unknown, /) -> Awaitable[str | None] | str | None`, found `((Any, GraphQLResolveInfo, Unknown, /) -> str) | None` | |
- error[lint:invalid-assignment] strawberry/schema_codegen/__init__.py:277:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] strawberry/schema_codegen/__init__.py:277:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[dict[str, @Todo(Support for `typing.TypeAlias`)]]]` | |
- error[lint:not-iterable] strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py:405:64: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] strawberry/subscriptions/protocols/graphql_transport_ws/handlers.py:405:64: Object of type `list[GraphQLError] | None` may not be iterable | |
- error[lint:not-iterable] strawberry/subscriptions/protocols/graphql_ws/handlers.py:225:42: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] strawberry/subscriptions/protocols/graphql_ws/handlers.py:225:42: Object of type `list[GraphQLError] | None` may not be iterable | |
+ error[lint:invalid-parameter-default] strawberry/tools/create_type.py:15:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:unresolved-attribute] strawberry/types/enum.py:120:22: Type `_EnumMemberT` has no attribute `value` | |
+ error[lint:unresolved-attribute] strawberry/types/enum.py:121:21: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:90:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object]` | |
- warning[lint:unused-ignore-comment] strawberry/types/field.py:85:63: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] strawberry/types/field.py:91:49: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:438:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:457:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:475:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:493:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:511:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/field.py:528:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-argument-type] strawberry/types/field.py:589:9: Argument to this function is incorrect: Expected `Sequence[object]`, found `(Sequence[object] & ~AlwaysFalsy) | tuple[()]` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:46:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:64:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:81:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:98:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:115:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:131:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:206:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:224:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:241:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:258:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:275:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/mutation.py:291:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:132:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ warning[lint:possibly-unbound-attribute] strawberry/types/object_type.py:170:28: Attribute `wrapped_func` on type `StrawberryResolver[Unknown] | None` is possibly unbound | |
+ error[lint:invalid-assignment] strawberry/types/object_type.py:178:17: Object of type `@Todo(Type::Intersection.call()) | ((...) -> Unknown)` is not assignable to attribute `wrapped_func` on type `StrawberryResolver[Unknown] | None` | |
+ error[lint:invalid-assignment] strawberry/types/object_type.py:181:17: Object of type `MethodType` is not assignable to attribute `wrapped_func` on type `StrawberryResolver[Unknown] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:199:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:214:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:226:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:319:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:332:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:342:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-assignment] strawberry/types/object_type.py:377:9: Object of type `tuple[@Todo(starred expression), OneOf]` is not assignable to `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:397:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:409:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
+ error[lint:invalid-parameter-default] strawberry/types/object_type.py:421:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[object] | None` | |
- Found 550 diagnostics | |
+ Found 622 diagnostics | |
alerta (https://github.com/alerta/alerta) | |
- error[lint:invalid-parameter-default] alerta/models/alert.py:413:29: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] alerta/models/alert.py:413:29: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] alerta/models/blackout.py:225:29: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] alerta/models/blackout.py:225:29: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] alerta/models/heartbeat.py:28:44: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] alerta/models/heartbeat.py:28:44: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] alerta/models/heartbeat.py:161:29: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] alerta/models/heartbeat.py:161:29: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] alerta/models/heartbeat.py:170:28: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] alerta/models/heartbeat.py:170:28: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
+ error[lint:invalid-argument-type] alerta/utils/mailer.py:69:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] tests/helpers/utils.py:25:24: Method `__getitem__` of type `bound method _Environ[str].__getitem__(key: str) -> str` is not callable on object of type `_Environ[str]` | |
- error[lint:invalid-argument-type] tests/test_scopes.py:30:17: Argument to this function is incorrect: Expected `list`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] tests/test_scopes.py:30:17: Argument to this function is incorrect: Expected `list[Unknown]`, found `Unknown | None` | |
- Found 612 diagnostics | |
+ Found 614 diagnostics | |
check-jsonschema (https://github.com/python-jsonschema/check-jsonschema) | |
+ error[lint:unresolved-attribute] src/check_jsonschema/cli/main_command.py:146:24: Type `_EnumMemberT` has no attribute `value` | |
+ error[lint:unresolved-attribute] src/check_jsonschema/cli/main_command.py:155:24: Type `_EnumMemberT` has no attribute `value` | |
+ error[lint:no-matching-overload] src/check_jsonschema/cli/param_types.py:121:26: No overload of function `fspath` matches arguments | |
+ error[lint:unresolved-attribute] src/check_jsonschema/parsers/yaml.py:65:28: Type `_T` has no attribute `load` | |
+ error[lint:invalid-return-type] src/check_jsonschema/regex_variants.py:83:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[ValidationError]` | |
+ error[lint:invalid-return-type] src/check_jsonschema/regex_variants.py:85:13: Return type does not match returned value: Expected `Iterator[ValidationError]`, found `None` | |
+ error[lint:invalid-return-type] src/check_jsonschema/regex_variants.py:130:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[ValidationError]` | |
+ error[lint:invalid-return-type] src/check_jsonschema/regex_variants.py:132:13: Return type does not match returned value: Expected `Iterator[ValidationError]`, found `None` | |
+ error[lint:invalid-return-type] src/check_jsonschema/schema_loader/main.py:31:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[ValidationError]` | |
- error[lint:not-iterable] src/check_jsonschema/utils.py:140:18: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] src/check_jsonschema/utils.py:140:18: Object of type `list[ValidationError] | None` may not be iterable | |
- Found 64 diagnostics | |
+ Found 73 diagnostics | |
ppb-vector (https://github.com/ppb/ppb-vector) | |
+ error[lint:invalid-parameter-default] ppb_vector/__init__.py:437:17: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[@Todo(Inference of subscript on special form)]` | |
+ error[lint:invalid-parameter-default] tests/utils.py:53:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[int | float | Vector]` | |
+ error[lint:invalid-argument-type] tests/utils.py:62:15: Argument to this function is incorrect: Expected `SupportsAbs[Unknown]`, found `int | float | Vector` | |
+ warning[lint:possibly-unbound-attribute] tests/utils.py:63:11: Attribute `length` on type `int | float | Vector` is possibly unbound | |
- Found 86 diagnostics | |
+ Found 90 diagnostics | |
pylox (https://github.com/sco1/pylox) | |
- error[lint:invalid-assignment] pylox/builtins/py_builtins.py:21:5: Object of type `deque` is not assignable to attribute `fields` of type `dict[Unknown, Unknown]` | |
+ error[lint:invalid-assignment] pylox/builtins/py_builtins.py:21:5: Object of type `deque[Unknown]` is not assignable to attribute `fields` of type `dict[Unknown, Unknown]` | |
- error[lint:invalid-assignment] pylox/containers/array.py:133:9: Object of type `deque` is not assignable to attribute `fields` of type `dict[Unknown, Unknown]` | |
+ error[lint:invalid-assignment] pylox/containers/array.py:133:9: Object of type `deque[Unknown]` is not assignable to attribute `fields` of type `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] pylox/lox.py:69:26: Argument to this function is incorrect: Expected `Sequence[Expr | Stmt]`, found `list[Expr | Stmt] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] tests/builtins/test_loxarrayize.py:15:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["in_iter"], Literal["truth_deque"]]` | |
- warning[lint:unused-ignore-comment] tests/expressions/test_evaluate.py:26:55: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] tests/expressions/test_evaluate.py:15:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["in_src"], Literal["truth_value"]]` | |
+ error[lint:invalid-argument-type] tests/expressions/test_parse.py:16:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["in_src"], Literal["truth_ast"]]` | |
+ error[lint:invalid-argument-type] tests/interpreter/test_interpreter_helpers.py:18:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["in_val"], Literal["truth_out"]]` | |
+ error[lint:invalid-argument-type] tests/interpreter/test_interpreter_helpers.py:32:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["in_val"], Literal["truth_out"]]` | |
- Found 26 diagnostics | |
+ Found 31 diagnostics | |
flake8-pyi (https://github.com/PyCQA/flake8-pyi) | |
+ error[lint:unsupported-operator] pyi.py:1777:28: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:1916:28: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:1947:28: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:1986:28: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:2028:28: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:2096:31: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unresolved-attribute] pyi.py:2193:17: Type `expr` has no attribute `id` | |
+ error[lint:unsupported-operator] pyi.py:2210:16: Operator `+` is unsupported between objects of type `list[arg]` and `list[arg]` | |
+ error[lint:unsupported-operator] pyi.py:2211:20: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[expr]` | |
Error: + error[lint:invalid-return-type] pyi.py:2263:37: Function can implicitly return `None`, which is not assignable to return type `Iterator[Error]` | |
Error: + error[lint:invalid-return-type] pyi.py:2297:22: Function can implicitly return `None`, which is not assignable to return type `Iterable[Error]` | |
- Found 13 diagnostics | |
+ Found 24 diagnostics | |
sockeye (https://github.com/awslabs/sockeye) | |
+ error[lint:unsupported-operator] docs/tutorials/multilingual/add_tag_to_lines.py:39:22: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str] | @Todo(Support for `typing.TypeAlias`)` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:238:53: Argument to this function is incorrect: Expected `Sequence[Iterable[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:238:78: Argument to this function is incorrect: Expected `Sequence[Iterable[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:43: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:43: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:43: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:62: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:62: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:586:62: Argument to this function is incorrect: Expected `Sequence[Iterable[Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:596:32: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:596:51: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] sockeye/data_io.py:641:18: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] sockeye/data_io.py:641:18: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
+ error[lint:non-subscriptable] sockeye/data_io.py:771:58: Cannot subscript object of type `Iterable[Unknown]` with no `__getitem__` method | |
+ error[lint:non-subscriptable] sockeye/data_io.py:771:58: Cannot subscript object of type `Iterable[Unknown]` with no `__getitem__` method | |
+ error[lint:non-subscriptable] sockeye/data_io.py:771:58: Cannot subscript object of type `Iterable[Unknown]` with no `__getitem__` method | |
+ error[lint:non-subscriptable] sockeye/data_io.py:772:54: Cannot subscript object of type `Iterable[Unknown]` with no `__getitem__` method | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:806:54: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:807:54: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:815:40: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:815:70: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:987:43: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:987:62: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:1006:38: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] sockeye/data_io.py:1006:57: Argument to this function is incorrect: Expected `Sequence[Iterable[Unknown]]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1147:58: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1147:58: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1147:58: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1147:58: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1147:58: No overload of function `__new__` matches arguments | |
+ warning[lint:redundant-cast] sockeye/data_io.py:1364:18: Value is already of type `Iterator[Unknown]` | |
+ warning[lint:redundant-cast] sockeye/data_io.py:1365:18: Value is already of type `Iterator[Unknown]` | |
+ error[lint:no-matching-overload] sockeye/data_io.py:1917:37: No overload of bound method `__init__` matches arguments | |
- error[lint:invalid-argument-type] sockeye/inference.py:346:28: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] sockeye/inference.py:346:28: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- error[lint:invalid-argument-type] sockeye/inference.py:348:34: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] sockeye/inference.py:348:34: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- error[lint:invalid-argument-type] sockeye/inference.py:350:50: Argument to this function is incorrect: Expected `Sized`, found `(Unknown & ~list) | None | @Todo(list comprehension type)` | |
+ error[lint:invalid-argument-type] sockeye/inference.py:350:50: Argument to this function is incorrect: Expected `Sized`, found `(Unknown & ~list[Unknown]) | None | @Todo(list comprehension type)` | |
- error[lint:invalid-argument-type] sockeye/inference.py:352:34: Argument to this function is incorrect: Expected `Sized`, found `(Unknown & ~list) | None | @Todo(list comprehension type)` | |
+ error[lint:invalid-argument-type] sockeye/inference.py:352:34: Argument to this function is incorrect: Expected `Sized`, found `(Unknown & ~list[Unknown]) | None | @Todo(list comprehension type)` | |
+ error[lint:no-matching-overload] sockeye/inference.py:379:65: No overload of function `sorted` matches arguments | |
- error[lint:not-iterable] sockeye/output_handler.py:151:69: Object of type `list | None` may not be iterable | |
+ error[lint:not-iterable] sockeye/output_handler.py:151:69: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:invalid-argument-type] sockeye/output_handler.py:254:80: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `list[Unknown] | None` | |
+ error[lint:invalid-argument-type] sockeye/test_utils.py:59:28: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] sockeye/test_utils.py:68:89: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] sockeye/test_utils.py:68:89: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-argument-type] sockeye/test_utils.py:224:34: Argument to this function is incorrect: Expected `list`, found `None | Unknown` | |
+ error[lint:invalid-argument-type] sockeye/test_utils.py:224:34: Argument to this function is incorrect: Expected `list[Unknown]`, found `None | Unknown` | |
- error[lint:invalid-return-type] sockeye/train.py:445:16: Return type does not match returned value: Expected `tuple[BaseParallelSampleIter, BaseParallelSampleIter, DataConfig, list, list]`, found `tuple[BaseParallelSampleIter, BaseParallelSampleIter | None, DataConfig, list, list]` | |
+ error[lint:invalid-return-type] sockeye/train.py:445:16: Return type does not match returned value: Expected `tuple[BaseParallelSampleIter, BaseParallelSampleIter, DataConfig, list[Unknown], list[Unknown]]`, found `tuple[BaseParallelSampleIter, BaseParallelSampleIter | None, DataConfig, list[Unknown], list[Unknown]]` | |
+ error[lint:invalid-argument-type] sockeye/translate.py:189:60: Argument to this function is incorrect: Expected `str`, found `_T` | |
+ error[lint:invalid-argument-type] sockeye_contrib/plot_metrics.py:80:16: Argument to this function is incorrect: Expected `MutableSequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] test/common.py:163:14: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
- error[lint:invalid-return-type] test/unit/test_data_io.py:313:12: Return type does not match returned value: Expected `tuple[list, list, list]`, found `tuple[@Todo(list comprehension type), @Todo(list comprehension type), @Todo(list comprehension type) | None]` | |
+ error[lint:invalid-return-type] test/unit/test_data_io.py:313:12: Return type does not match returned value: Expected `tuple[list[Unknown], list[Unknown], list[Unknown]]`, found `tuple[@Todo(list comprehension type), @Todo(list comprehension type), @Todo(list comprehension type) | None]` | |
- error[lint:invalid-argument-type] test/unit/test_data_io.py:361:20: Argument to this function is incorrect: Expected `Sized`, found `Unknown | list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_data_io.py:361:20: Argument to this function is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | None` | |
- error[lint:invalid-argument-type] test/unit/test_data_io.py:361:70: Argument to this function is incorrect: Expected `Sized`, found `Unknown | list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_data_io.py:361:70: Argument to this function is incorrect: Expected `Sized`, found `Unknown | list[Unknown] | None` | |
- warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:367:20: Method `__getitem__` of type `Unknown | list | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:367:20: Method `__getitem__` of type `Unknown | list[Unknown] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:414:25: Method `__getitem__` of type `Unknown | list | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:414:25: Method `__getitem__` of type `Unknown | list[Unknown] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:415:25: Method `__getitem__` of type `Unknown | list | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:415:25: Method `__getitem__` of type `Unknown | list[Unknown] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:420:28: Method `__getitem__` of type `Unknown | list | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] test/unit/test_data_io.py:420:28: Method `__getitem__` of type `Unknown | list[Unknown] | None` is possibly unbound | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:52:51: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:52:51: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:53:51: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:53:51: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:54:51: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:54:51: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:not-iterable] test/unit/test_inference.py:128:23: Object of type `list | None` may not be iterable | |
+ error[lint:not-iterable] test/unit/test_inference.py:128:23: Object of type `list[Unknown] | None` may not be iterable | |
- error[lint:not-iterable] test/unit/test_inference.py:163:23: Object of type `list | None` may not be iterable | |
+ error[lint:not-iterable] test/unit/test_inference.py:163:23: Object of type `list[Unknown] | None` may not be iterable | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:166:40: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:166:40: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
+ error[lint:no-matching-overload] test/unit/test_inference.py:177:75: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] test/unit/test_inference.py:177:75: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] test/unit/test_inference.py:177:75: No overload of function `__new__` matches arguments | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:244:20: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:244:20: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:310:20: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:310:20: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- error[lint:invalid-argument-type] test/unit/test_inference.py:367:20: Argument to this function is incorrect: Expected `Sized`, found `list | None` | |
+ error[lint:invalid-argument-type] test/unit/test_inference.py:367:20: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- Found 392 diagnostics | |
+ Found 432 diagnostics | |
trio (https://github.com/python-trio/trio) | |
+ error[lint:call-non-callable] src/trio/_channel.py:534:32: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_channel.py:534:32: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_channel.py:534:32: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] src/trio/_channel.py:559:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
- error[lint:call-non-callable] src/trio/_core/_asyncgens.py:216:26: Object of type `GenericAlias` is not callable | |
+ error[lint:no-matching-overload] src/trio/_core/_run.py:243:16: No overload of bound method `derive` matches arguments | |
+ error[lint:invalid-assignment] src/trio/_core/_run.py:1373:21: Object of type `_TaskStatus[None]` is not assignable to `_TaskStatus[object]` | |
+ error[lint:invalid-parameter-default] src/trio/_core/_run.py:2320:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Instrument]` | |
+ error[lint:invalid-parameter-default] src/trio/_core/_run.py:2450:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Instrument]` | |
- error[lint:invalid-argument-type] src/trio/_core/_run.py:2591:48: Argument to this function is incorrect: Expected `bool`, found `@Todo(Support for `typing.TypeAlias`) | list` | |
+ error[lint:invalid-argument-type] src/trio/_core/_run.py:2591:48: Argument to this function is incorrect: Expected `bool`, found `@Todo(Support for `typing.TypeAlias`) | list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_run.py:2728:28: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] src/trio/_core/_tests/test_asyncgen.py:241:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:unsupported-operator] src/trio/_core/_tests/test_exceptiongroup_gc.py:61:32: Operator `+` is unsupported between objects of type `StackSummary` and `StackSummary` | |
+ error[lint:unsupported-operator] src/trio/_core/_tests/test_exceptiongroup_gc.py:64:32: Operator `+` is unsupported between objects of type `StackSummary` and `StackSummary` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_exceptiongroup_gc.py:88:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] src/trio/_core/_tests/test_guest_mode.py:55:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Instrument]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_guest_mode.py:67:17: Argument to this function is incorrect: Expected `(...) -> Unknown`, found `_WithException[Unknown, Literal[Failed]]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_guest_mode.py:77:17: Argument to this function is incorrect: Expected `(...) -> Unknown`, found `_WithException[Unknown, Literal[Failed]]` | |
+ error[lint:call-non-callable] src/trio/_core/_tests/test_guest_mode.py:192:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-parameter-default] src/trio/_core/_tests/test_guest_mode.py:478:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Instrument]` | |
+ error[lint:call-non-callable] src/trio/_core/_tests/test_guest_mode.py:521:29: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_core/_tests/test_guest_mode.py:521:29: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_core/_tests/test_guest_mode.py:521:29: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:76:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] src/trio/_core/_tests/test_instrumentation.py:86:25: Operator `+` is unsupported between objects of type `list[tuple[str, Unknown | None]]` and `list[tuple[str, Unknown | None]]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:108:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:131:28: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:143:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:159:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:176:33: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:201:33: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:247:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_instrumentation.py:314:21: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_ki.py:367:27: Argument to this function is incorrect: Expected `Sequence[Instrument]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_ki.py:685:43: Argument to this function is incorrect: Expected `AsyncGenerator[None, None]`, found `object` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_parking_lot.py:50:9: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_parking_lot.py:87:13: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_parking_lot.py:138:9: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] src/trio/_core/_tests/test_run.py:118:19: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_run.py:161:9: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:missing-argument] src/trio/_core/_tests/test_run.py:811:19: No arguments provided for required parameters `exc_type`, `exc_value`, `traceback` of bound method `__aexit__` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_run.py:2716:42: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_run.py:2745:49: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_run.py:2847:44: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_tutil.py:7:28: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_tutil.py:9:32: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_tutil.py:10:28: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_tutil.py:11:28: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_core/_tests/test_tutil.py:13:32: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:type-assertion-failure] src/trio/_core/_tests/type_tests/run.py:39:1: Actual type `Unknown` is not the same as asserted type `list[int | float]` | |
+ error[lint:call-non-callable] src/trio/_dtls.py:669:26: Object of type `GenericAlias` is not callable | |
- error[lint:invalid-return-type] src/trio/_file_io.py:330:63: Function can implicitly return `None`, which is not assignable to return type `memoryview` | |
+ error[lint:invalid-return-type] src/trio/_file_io.py:330:63: Function can implicitly return `None`, which is not assignable to return type `memoryview[Unknown]` | |
+ error[lint:invalid-return-type] src/trio/_file_io.py:337:77: Function can implicitly return `None`, which is not assignable to return type `list[AnyStr]` | |
+ error[lint:invalid-argument-type] src/trio/_highlevel_open_tcp_listeners.py:166:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] src/trio/_highlevel_open_tcp_stream.py:134:42: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] src/trio/_highlevel_open_tcp_stream.py:401:57: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] src/trio/_highlevel_open_unix_stream.py:63:28: No overload of function `fspath` matches arguments | |
- error[lint:unresolved-attribute] src/trio/_path.py:87:48: Type `(...) -> @Todo(specialized non-generic class)` has no attribute `__name__` | |
+ error[lint:unresolved-attribute] src/trio/_path.py:87:48: Type `(...) -> Iterable[Path]` has no attribute `__name__` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:311:32: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:311:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:327:39: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:327:52: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:343:36: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:343:49: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:357:32: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:357:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:437:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["__name__"]]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:437:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:758:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:758:61: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1120:59: Function can implicitly return `None`, which is not assignable to return type `Awaitable[bytes]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1139:14: Function can implicitly return `None`, which is not assignable to return type `Awaitable[int]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1157:14: Function can implicitly return `None`, which is not assignable to return type `Awaitable[tuple[bytes, @Todo(Support for `typing.TypeAlias`)]]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1176:14: Function can implicitly return `None`, which is not assignable to return type `Awaitable[tuple[int, @Todo(Support for `typing.TypeAlias`)]]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1198:18: Function can implicitly return `None`, which is not assignable to return type `Awaitable[tuple[bytes, list[tuple[int, int, bytes]], int, object]]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1221:18: Function can implicitly return `None`, which is not assignable to return type `Awaitable[tuple[int, list[tuple[int, int, bytes]], int, object]]` | |
+ error[lint:invalid-return-type] src/trio/_socket.py:1235:61: Function can implicitly return `None`, which is not assignable to return type `Awaitable[int]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:1263:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:1263:56: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:1286:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] src/trio/_socket.py:1286:61: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[()]` | |
+ error[lint:invalid-return-type] src/trio/_ssl.py:445:16: Return type does not match returned value: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-assignment] src/trio/_subprocess.py:80:13: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:call-non-callable] src/trio/_tests/pytest_plugin.py:52:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:26:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:26:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:26:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:64:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:64:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:64:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:78:37: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:78:37: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:78:37: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:102:41: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:102:41: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:102:41: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:124:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:124:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:124:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:143:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:143:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:143:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:160:15: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:160:15: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:160:15: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:182:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:182:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:182:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:201:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:201:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:201:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:218:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:218:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:218:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:232:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:232:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:232:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:261:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:261:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:261:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:282:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:282:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:282:13: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:301:21: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:301:21: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:301:21: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:313:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:313:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:313:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:365:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:365:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:365:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:391:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:391:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:391:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:405:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:405:12: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_channel.py:405:12: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_channel.py:575:41: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_dtls.py:140:25: Argument to this function is incorrect: Expected `Sequence[int | float | Fraction] | None`, found `list[Unknown]` | |
+ error[lint:call-non-callable] src/trio/_tests/test_exports.py:161:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_exports.py:174:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_exports.py:200:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_exports.py:270:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_file_io.py:109:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_file_io.py:115:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_file_io.py:266:26: Argument to this function is incorrect: Expected `AsyncIOWrapper[_CanDetach[T]]`, found `AsyncIOWrapper[BufferedReader]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_listeners.py:285:13: Argument to this function is incorrect: Expected `Sequence[tuple[AddressFamily, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_listeners.py:377:30: Argument to this function is incorrect: Expected `Sequence[tuple[AddressFamily, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:81:42: Argument to this function is incorrect: Expected `MutableSequence[tuple[AddressFamily, SocketKind, int, str, Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:86:42: Argument to this function is incorrect: Expected `MutableSequence[tuple[AddressFamily, SocketKind, int, str, Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:93:38: Argument to this function is incorrect: Expected `MutableSequence[tuple[AddressFamily, SocketKind, int, str, Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:98:38: Argument to this function is incorrect: Expected `MutableSequence[tuple[AddressFamily, SocketKind, int, str, Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:393:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:393:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:393:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:400:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:400:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:400:46: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:409:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:409:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:409:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:419:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:419:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:419:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:429:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:429:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:429:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:439:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:439:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:439:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:459:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:459:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:459:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:479:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:479:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:479:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:500:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:500:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:500:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:521:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:521:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:521:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:543:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:543:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:543:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_highlevel_open_unix_stream.py:42:43: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:571:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:571:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:571:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:602:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:602:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:602:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:625:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:625:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:625:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:648:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:648:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:648:9: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:667:45: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:667:45: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:667:45: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:675:13: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:675:13: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_open_tcp_stream.py:675:13: Argument to this function is incorrect: Expected `Sequence[tuple[str, int | float, str]]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] src/trio/_tests/test_highlevel_serve_listeners.py:41:31: Object of type `GenericAlias` is not callable | |
+ warning[lint:call-possibly-unbound-method] src/trio/_tests/test_highlevel_serve_listeners.py:151:27: Method `__getitem__` of type `@Todo(Support for `typing.TypeAlias`) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] src/trio/_tests/test_highlevel_serve_listeners.py:152:16: Method `__getitem__` of type `@Todo(Support for `typing.TypeAlias`) | None` is possibly unbound | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_socket.py:293:35: Argument to this function is incorrect: Expected `Sequence[SocketType | BaseException]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_highlevel_socket.py:296:9: Argument to this function is incorrect: Expected `Sequence[SocketType | BaseException]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_path.py:63:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["cls_a"], Literal["cls_b"]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_path.py:90:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["cls_a"], Literal["cls_b"]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_path.py:101:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["cls_a"], Literal["cls_b"]]` | |
- warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:124:12: Attribute `__name__` on type `Unknown | ((...) -> @Todo(specialized non-generic class))` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:124:12: Attribute `__name__` on type `Unknown | ((...) -> Awaitable[PathT])` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:125:12: Attribute `__qualname__` on type `Unknown | ((...) -> @Todo(specialized non-generic class))` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:125:12: Attribute `__qualname__` on type `Unknown | ((...) -> Awaitable[PathT])` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:128:12: Attribute `__qualname__` on type `Unknown | ((...) -> @Todo(specialized non-generic class))` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/trio/_tests/test_path.py:128:12: Attribute `__qualname__` on type `Unknown | ((...) -> Awaitable[PathT])` is possibly unbound | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_path.py:196:23: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_socket.py:538:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["address"], Literal["socket_type"]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_socket.py:597:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["socket_type"], Literal["addrs"]]` | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:340:20: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:351:20: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:357:20: No overload of function `run_process` matches arguments | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_subprocess.py:498:55: Unused blanket `type: ignore` directive | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:374:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:376:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:381:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:386:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:391:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:397:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:403:20: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:417:20: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:449:20: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:506:19: No overload of function `open_process` matches arguments | |
+ error[lint:call-non-callable] src/trio/_tests/test_subprocess.py:596:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:718:11: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:722:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:726:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:738:15: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/test_subprocess.py:751:18: No overload of function `open_process` matches arguments | |
+ error[lint:call-non-callable] src/trio/_tests/test_sync.py:423:26: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_sync.py:439:26: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_sync.py:454:26: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:44:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:50:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[SyntaxError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:54:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError, SyntaxError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:58:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError, SyntaxError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:62:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:62:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:71:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[SyntaxError, ExceptionGroup[Unknown], ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:73:39: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:74:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[RuntimeError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:88:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[RuntimeError, ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:97:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:110:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:123:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError, ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:138:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:144:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:144:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:147:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:147:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError, TypeError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:149:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:149:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:153:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:153:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:157:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:157:33: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:157:53: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:181:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:199:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:199:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:220:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:220:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:231:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:231:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:237:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:237:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:251:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:251:33: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:251:53: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:261:38: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:261:62: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:291:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:291:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:293:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:312:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:312:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:316:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:316:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:347:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:351:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:355:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:362:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:372:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:384:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:388:30: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:401:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:426:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:430:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:439:42: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:509:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:529:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:529:33: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:560:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:569:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:577:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:588:41: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:596:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:616:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:616:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:654:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:655:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:681:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:682:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:705:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:705:33: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:705:53: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:731:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:731:33: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:731:67: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:749:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:749:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:818:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:822:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:826:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:863:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:890:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:909:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:925:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:941:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:956:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:984:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1000:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1007:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1012:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1019:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1023:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1030:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1034:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1041:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1049:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[OSError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1056:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[OSError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1065:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[OSError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1075:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1075:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_testing_raisesgroup.py:1115:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_threads.py:89:44: Argument to this function is incorrect: Expected `(...) -> Literal[2] | Awaitable[Literal[2]]`, found `def f1(record: Unknown | list[tuple[str, Thread | type[BaseException]]]) -> int` | |
- error[lint:invalid-argument-type] src/trio/_tests/test_threads.py:104:22: Argument to this function is incorrect: Expected `(...) -> Thread`, found `def from_thread_run(afn: (...) -> @Todo(specialized non-generic class), *args: @Todo(`Unpack[]` special form), *, trio_token: TrioToken | None = None) -> RetT` | |
- error[lint:invalid-argument-type] src/trio/_tests/test_threads.py:112:22: Argument to this function is incorrect: Expected `(...) -> Thread`, found `def from_thread_run(afn: (...) -> @Todo(specialized non-generic class), *args: @Todo(`Unpack[]` special form), *, trio_token: TrioToken | None = None) -> RetT` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_threads.py:104:22: Argument to this function is incorrect: Expected `(...) -> Thread`, found `def from_thread_run(afn: (...) -> Awaitable[RetT], *args: @Todo(`Unpack[]` special form), *, trio_token: TrioToken | None = None) -> RetT` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_threads.py:112:22: Argument to this function is incorrect: Expected `(...) -> Thread`, found `def from_thread_run(afn: (...) -> Awaitable[RetT], *args: @Todo(`Unpack[]` special form), *, trio_token: TrioToken | None = None) -> RetT` | |
+ error[lint:call-non-callable] src/trio/_tests/test_threads.py:270:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_threads.py:281:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_threads.py:318:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/test_timeouts.py:119:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-return-type] src/trio/_tests/test_util.py:118:17: Function can implicitly return `None`, which is not assignable to return type `Generator[Coroutine[None, None, None], None, None]` | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_util.py:123:61: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_util.py:127:70: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/trio/_tests/test_util.py:144:51: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:288:62: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:293:43: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:299:62: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:305:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:311:29: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:323:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:337:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/test_util.py:351:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/tools/test_mypy_annotate.py:16:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["src"], Literal["expected"]]` | |
+ error[lint:call-non-callable] src/trio/_tests/type_tests/open_memory_channel.py:4:8: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/type_tests/open_memory_channel.py:4:8: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] src/trio/_tests/type_tests/open_memory_channel.py:4:8: Object of type `GenericAlias` is not callable | |
- error[lint:type-assertion-failure] src/trio/_tests/type_tests/path.py:42:5: Actual type `@Todo(specialized non-generic class)` is not the same as asserted type `Path` | |
+ error[lint:type-assertion-failure] src/trio/_tests/type_tests/path.py:42:5: Actual type `Unknown` is not the same as asserted type `Path` | |
+ error[lint:type-assertion-failure] src/trio/_tests/type_tests/path.py:141:5: Actual type `@Todo(generic `typing.Awaitable` type)` is not the same as asserted type `list[str]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:24:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:30:71: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:42:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[KeyboardInterrupt]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:133:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:156:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ExceptionGroup[Unknown]]` | |
+ error[lint:invalid-argument-type] src/trio/_tests/type_tests/raisesgroup.py:156:29: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[ValueError]` | |
+ error[lint:no-matching-overload] src/trio/_tests/type_tests/subprocesses.py:9:11: No overload of function `run_process` matches arguments | |
+ error[lint:no-matching-overload] src/trio/_tests/type_tests/subprocesses.py:14:11: No overload of function `run_process` matches arguments | |
- warning[lint:unused-ignore-comment] src/trio/_tests/type_tests/subprocesses.py:22:60: Unused blanket `type: ignore` directive | |
+ error[lint:no-matching-overload] src/trio/_tests/type_tests/subprocesses.py:18:15: No overload of function `run_process` matches arguments | |
- error[lint:type-assertion-failure] src/trio/_tests/type_tests/task_status.py:13:5: Actual type `TaskStatus` is not the same as asserted type `@Todo(specialized non-generic class)` | |
+ error[lint:no-matching-overload] src/trio/_tools/mypy_annotate.py:98:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-parameter-default] src/trio/_util.py:354:9: Default value of type `ellipsis` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] src/trio/_util.py:355:9: Default value of type `ellipsis` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:call-non-callable] src/trio/testing/_fake_net.py:230:54: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-return-type] src/trio/testing/_raises_group.py:648:16: Return type does not match returned value: Expected `Sequence[BaseException]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/trio/testing/_raises_group.py:1019:70: Argument to this function is incorrect: Expected `set[int] | None`, found `set[int | _S] | set[Unknown | _S]` | |
- Found 1117 diagnostics | |
+ Found 1475 diagnostics | |
imagehash (https://github.com/JohannesBuchner/imagehash) | |
+ error[lint:unsupported-operator] imagehash/__init__.py:441:39: Operator `/` is unsupported between objects of type `_T` and `Literal[1] | Any` | |
- Found 40 diagnostics | |
+ Found 41 diagnostics | |
websockets (https://github.com/aaugustin/websockets) | |
+ warning[lint:redundant-cast] src/websockets/asyncio/server.py:920:37: Value is already of type `Iterable[tuple[str, str]]` | |
+ error[lint:no-matching-overload] src/websockets/cli.py:154:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-assignment] src/websockets/client.py:270:13: Object of type `Unknown | list[Unknown]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-return-type] src/websockets/extensions/permessage_deflate.py:359:16: Return type does not match returned value: Expected `Sequence[Unknown | tuple[@Todo(Generic tuple specializations), ...]]`, found `list[Unknown | tuple[@Todo(Generic tuple specializations), ...]]` | |
+ error[lint:invalid-assignment] src/websockets/extensions/permessage_deflate.py:483:9: Object of type `list[Unknown]` is not assignable to `Sequence[ClientExtensionFactory] | None` | |
+ error[lint:not-iterable] src/websockets/extensions/permessage_deflate.py:486:34: Object of type `Sequence[ClientExtensionFactory] | None` may not be iterable | |
+ error[lint:invalid-assignment] src/websockets/extensions/permessage_deflate.py:488:9: Object of type `list[_T]` is not assignable to `Sequence[ClientExtensionFactory] | None` | |
+ error[lint:no-matching-overload] src/websockets/extensions/permessage_deflate.py:488:22: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-return-type] src/websockets/extensions/permessage_deflate.py:493:12: Return type does not match returned value: Expected `Sequence[ClientExtensionFactory]`, found `Sequence[ClientExtensionFactory] | None` | |
+ error[lint:invalid-assignment] src/websockets/extensions/permessage_deflate.py:685:9: Object of type `list[Unknown]` is not assignable to `Sequence[ServerExtensionFactory] | None` | |
+ error[lint:not-iterable] src/websockets/extensions/permessage_deflate.py:688:28: Object of type `Sequence[ServerExtensionFactory] | None` may not be iterable | |
+ error[lint:invalid-assignment] src/websockets/extensions/permessage_deflate.py:690:9: Object of type `list[_T]` is not assignable to `Sequence[ServerExtensionFactory] | None` | |
+ error[lint:no-matching-overload] src/websockets/extensions/permessage_deflate.py:690:22: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-return-type] src/websockets/extensions/permessage_deflate.py:697:12: Return type does not match returned value: Expected `Sequence[ServerExtensionFactory]`, found `Sequence[ServerExtensionFactory] | None` | |
+ error[lint:invalid-assignment] src/websockets/frames.py:268:13: Object of type `list[Unknown]` is not assignable to `Sequence[Extension] | None` | |
+ error[lint:no-matching-overload] src/websockets/frames.py:269:26: No overload of function `__new__` matches arguments | |
+ error[lint:invalid-assignment] src/websockets/frames.py:297:13: Object of type `list[Unknown]` is not assignable to `Sequence[Extension] | None` | |
+ error[lint:not-iterable] src/websockets/frames.py:298:26: Object of type `Sequence[Extension] | None` may not be iterable | |
+ error[lint:invalid-argument-type] src/websockets/frames.py:328:31: Argument to this function is incorrect: Expected `bytes`, found `Unknown | bytes | bytearray | memoryview[Unknown]` | |
+ error[lint:invalid-return-type] src/websockets/http11.py:376:12: Return type does not match returned value: Expected `Generator[None, None, Headers]`, found `Headers` | |
+ error[lint:invalid-return-type] src/websockets/http11.py:391:16: Return type does not match returned value: Expected `Generator[None, None, bytes]`, found `Literal[b""]` | |
+ error[lint:invalid-return-type] src/websockets/http11.py:422:16: Return type does not match returned value: Expected `Generator[None, None, bytes]`, found `Literal[b""]` | |
+ error[lint:invalid-argument-type] src/websockets/imports.py:28:58: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ warning[lint:redundant-cast] src/websockets/legacy/auth.py:163:37: Value is already of type `Iterable[Unknown | tuple[@Todo(Generic tuple specializations), ...]]` | |
+ error[lint:invalid-argument-type] src/websockets/legacy/client.py:195:46: Argument to this function is incorrect: Expected `Sequence[Extension]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] src/websockets/legacy/client.py:236:13: Object of type `Unknown | list[Unknown]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-assignment] src/websockets/legacy/framing.py:108:13: Object of type `list[Unknown]` is not assignable to `Sequence[Extension] | None` | |
+ error[lint:no-matching-overload] src/websockets/legacy/framing.py:109:26: No overload of function `__new__` matches arguments | |
+ error[lint:invalid-argument-type] src/websockets/legacy/server.py:478:53: Argument to this function is incorrect: Expected `Sequence[Unknown | tuple[@Todo(Generic tuple specializations), ...]]`, found `list[Unknown] & ~AlwaysFalsy` | |
- error[lint:invalid-argument-type] src/websockets/protocol.py:706:43: Argument to this function is incorrect: Expected `bytes`, found `bytes | bytearray | memoryview` | |
+ error[lint:invalid-argument-type] src/websockets/protocol.py:706:43: Argument to this function is incorrect: Expected `bytes`, found `bytes | bytearray | memoryview[Unknown]` | |
+ error[lint:invalid-argument-type] src/websockets/server.py:389:53: Argument to this function is incorrect: Expected `Sequence[Unknown | tuple[@Todo(Generic tuple specializations), ...]]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-assignment] src/websockets/server.py:408:9: Object of type `Unknown | list[Unknown]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-return-type] src/websockets/sync/connection.py:390:13: Return type does not match returned value: Expected `Iterator[Unknown]`, found `None` | |
+ warning[lint:redundant-cast] src/websockets/sync/server.py:706:37: Value is already of type `Iterable[tuple[str, str]]` | |
- Found 125 diagnostics | |
+ Found 158 diagnostics | |
flake8 (https://github.com/pycqa/flake8) | |
+ error[lint:invalid-argument-type] src/flake8/api/legacy.py:134:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/flake8/api/legacy.py:202:59: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/flake8/api/legacy.py:215:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] src/flake8/checker.py:603:16: Return type does not match returned value: Expected `tuple[int, int]`, found `int & tuple` | |
+ error[lint:invalid-return-type] src/flake8/checker.py:603:16: Return type does not match returned value: Expected `tuple[int, int]`, found `int & tuple[Unknown, ...]` | |
+ error[lint:invalid-assignment] src/flake8/discover_files.py:61:9: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] src/flake8/main/cli.py:20:9: Object of type `list[str]` is not assignable to `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] src/flake8/main/cli.py:23:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] src/flake8/options/aggregator.py:27:41: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/flake8/options/manager.py:36:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str] & ~str` | |
+ error[lint:invalid-argument-type] src/flake8/options/manager.py:196:47: Argument to this function is incorrect: Expected `Sequence[str]`, found `(Any & list[Unknown]) | (list[str] & list[Unknown])` | |
+ error[lint:invalid-argument-type] src/flake8/options/manager.py:198:46: Argument to this function is incorrect: Expected `str`, found `(Any & ~list[Unknown]) | (list[str] & ~list[Unknown])` | |
+ error[lint:invalid-argument-type] src/flake8/options/manager.py:223:13: Argument to this function is incorrect: Expected `Sequence[ArgumentParser]`, found `list[ArgumentParser]` | |
+ error[lint:invalid-argument-type] src/flake8/options/parse_args.py:53:71: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[str]` | |
+ error[lint:invalid-return-type] src/flake8/plugins/finder.py:71:30: Function can implicitly return `None`, which is not assignable to return type `Generator[LoadedPlugin, None, None]` | |
+ error[lint:invalid-argument-type] src/flake8/plugins/finder.py:137:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-return-type] src/flake8/plugins/pycodestyle.py:58:6: Function can implicitly return `None`, which is not assignable to return type `Generator[tuple[int, str], None, None]` | |
+ error[lint:invalid-return-type] src/flake8/statistics.py:23:16: Return type does not match returned value: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] src/flake8/style_guide.py:356:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_aggregator.py:60:9: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_aggregator.py:79:70: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_checker.py:273:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_checker.py:293:57: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_checker.py:312:57: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:28:29: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:33:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:55:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:62:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:79:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:91:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:105:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:127:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:158:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:169:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:187:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:204:18: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:216:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:238:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:260:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:272:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:288:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:323:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:339:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:345:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:356:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:369:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:386:25: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_main.py:396:18: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/integration/test_plugins.py:86:25: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/integration/test_plugins.py:86:25: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/integration/test_plugins.py:86:25: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:110:71: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:140:17: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[str, Literal["--config"], str]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:160:17: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[str, Literal["--config"], str]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:164:17: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[@Todo(starred expression), Literal["--enable-extension=ABC"]]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:193:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["t.py"], Literal["--config"], str]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:224:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["t.py"], Literal["--config"], str]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:259:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["t.py"], Literal["--config"], str]` | |
+ error[lint:invalid-argument-type] tests/integration/test_plugins.py:287:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["t.py"], Literal["--config"], str]` | |
+ error[lint:no-matching-overload] tests/unit/plugins/pycodestyle_test.py:9:24: No overload of function `abspath` matches arguments | |
+ error[lint:invalid-argument-type] tests/unit/test_base_formatter.py:80:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["line1"], Literal["line2"], Literal["column"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_checker_manager.py:23:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_checker_manager.py:60:77: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_checker_manager.py:68:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_checker_manager.py:78:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_decision_engine.py:67:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["select_list"], Literal["extend_select"], Literal["error_code"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_discover_files.py:91:52: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_discover_files.py:131:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | tuple[Literal["."]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_discover_files.py:133:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | tuple[Literal["*.py"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_discover_files.py:134:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | tuple[()]` | |
+ error[lint:invalid-argument-type] tests/unit/test_file_processor.py:164:68: Argument to this function is incorrect: Expected `list[str] | None`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] tests/unit/test_file_processor.py:185:68: Argument to this function is incorrect: Expected `list[str] | None`, found `list[LiteralString]` | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:8:18: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:8:18: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:8:18: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:18:15: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:18:15: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:no-matching-overload] tests/unit/test_main_options.py:18:15: No overload of bound method `parse_known_args` matches arguments | |
+ error[lint:invalid-argument-type] tests/unit/test_option_manager.py:44:37: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/unit/test_option_manager.py:173:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["s"], Literal["is_auto"], Literal["n_jobs"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_utils.py:40:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_utils.py:168:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal[".*"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_utils.py:169:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal[".*"]]` | |
+ error[lint:invalid-argument-type] tests/unit/test_utils.py:201:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["s"], Literal["expected"]]` | |
- Found 45 diagnostics | |
+ Found 127 diagnostics | |
PyWinCtl (https://github.com/Kalmat/PyWinCtl) | |
+ error[lint:invalid-assignment] src/pywinctl/_pywinctl_macos.py:1499:21: Object of type `list[Unknown]` is not assignable to `Sequence[int] | None` | |
+ error[lint:unsupported-operator] src/pywinctl/_pywinctl_macos.py:1531:43: Operator `+` is unsupported between objects of type `Sequence[int]` and `list[Unknown]` | |
+ warning[lint:call-possibly-unbound-method] src/pywinctl/_pywinctl_macos.py:1531:43: Method `__getitem__` of type `Sequence[int] | None` is possibly unbound | |
+ error[lint:invalid-argument-type] src/pywinctl/_pywinctl_macos.py:1543:73: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] src/pywinctl/_pywinctl_macos.py:1553:87: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] src/pywinctl/_pywinctl_macos.py:1554:82: Argument to this function is incorrect: Expected `Sequence[int] | None`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] src/pywinctl/_pywinctl_win.py:350:17: Default value of type `ellipsis` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] src/pywinctl/_pywinctl_win.py:350:17: Default value of type `ellipsis` is not assignable to annotated parameter type `list[Unknown]` | |
- Found 55 diagnostics | |
+ Found 61 diagnostics | |
SinbadCogs (https://github.com/mikeshardmind/SinbadCogs) | |
+ error[lint:invalid-return-type] quotetools/helpers.py:123:12: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] quotetools/quotetools.py:88:41: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown, ...] & ~AlwaysFalsy` | |
+ error[lint:invalid-return-type] relays/helpers.py:108:23: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:no-matching-overload] rolemanagement/converters.py:61:25: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] rolemanagement/converters.py:161:25: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] rolemanagement/converters.py:262:25: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] rolemanagement/converters.py:322:22: No overload of bound method `parse_args` matches arguments | |
- error[lint:invalid-parameter-default] rolemanagement/utils.py:61:9: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] rolemanagement/utils.py:61:9: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] rolemanagement/utils.py:62:9: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] rolemanagement/utils.py:62:9: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
+ error[lint:no-matching-overload] scheduler/converters.py:77:25: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] scheduler/converters.py:131:25: No overload of bound method `parse_args` matches arguments | |
- Found 178 diagnostics | |
+ Found 187 diagnostics | |
bandersnatch (https://github.com/pypa/bandersnatch) | |
- error[lint:unresolved-attribute] src/bandersnatch/filter.py:190:32: Type `dict[str, @Todo(specialized non-generic class)]` has no attribute `select` | |
+ error[lint:unresolved-attribute] src/bandersnatch/filter.py:190:32: Type `dict[str, list[EntryPoint]]` has no attribute `select` | |
+ error[lint:unresolved-attribute] src/bandersnatch/simple.py:55:33: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:invalid-return-type] src/bandersnatch/simple.py:112:16: Return type does not match returned value: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-return-type] src/bandersnatch/simple.py:155:16: Return type does not match returned value: Expected `list[Path]`, found `list[SupportsRichComparisonT] | list[Unknown]` | |
- error[lint:invalid-assignment] src/bandersnatch/storage.py:31:1: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/bandersnatch/storage.py:31:1: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[Storage]]` | |
+ error[lint:invalid-return-type] src/bandersnatch/storage.py:136:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] src/bandersnatch/storage.py:156:45: Function can implicitly return `None`, which is not assignable to return type `Generator[Unknown, None, None]` | |
- error[lint:unresolved-attribute] src/bandersnatch/storage.py:366:24: Type `dict[str, @Todo(specialized non-generic class)]` has no attribute `select` | |
+ error[lint:unresolved-attribute] src/bandersnatch/storage.py:366:24: Type `dict[str, list[EntryPoint]]` has no attribute `select` | |
- error[lint:invalid-assignment] src/bandersnatch/tests/conftest.py:60:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to attribute `loaded_storage_plugins` of type `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/bandersnatch/tests/conftest.py:60:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to attribute `loaded_storage_plugins` of type `dict[str, list[Storage]]` | |
- error[lint:invalid-assignment] src/bandersnatch/tests/plugins/test_allowlist_name.py:27:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to attribute `loaded_storage_plugins` of type `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/bandersnatch/tests/plugins/test_allowlist_name.py:27:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to attribute `loaded_storage_plugins` of type `dict[str, list[Storage]]` | |
- error[lint:invalid-argument-type] src/bandersnatch/tests/test_mirror.py:1376:9: Argument to this function is incorrect: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] src/bandersnatch/tests/test_mirror.py:1376:9: Argument to this function is incorrect: Expected `Mapping[str, set[str]]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-argument-type] src/bandersnatch/tests/test_mirror.py:1460:9: Argument to this function is incorrect: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] src/bandersnatch/tests/test_mirror.py:1460:9: Argument to this function is incorrect: Expected `Mapping[str, set[str]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] src/bandersnatch_storage_plugins/filesystem.py:201:44: Function can implicitly return `None`, which is not assignable to return type `Generator[DirEntry[Unknown], None, None]` | |
+ error[lint:invalid-return-type] src/runner.py:23:12: Return type does not match returned value: Expected `list[int]`, found `list[_T]` | |
- Found 192 diagnostics | |
+ Found 199 diagnostics | |
aiohttp-devtools (https://github.com/aio-libs/aiohttp-devtools) | |
+ error[lint:invalid-argument-type] aiohttp_devtools/runserver/main.py:47:32: Argument to this function is incorrect: Expected `_T`, found `bound method AppTask.cleanup_ctx(app: Application) -> @Todo(generic types.CoroutineType)` | |
+ error[lint:invalid-argument-type] aiohttp_devtools/runserver/main.py:52:36: Argument to this function is incorrect: Expected `_T`, found `bound method LiveReloadTask.cleanup_ctx(app: Application) -> @Todo(generic types.CoroutineType)` | |
+ error[lint:invalid-argument-type] aiohttp_devtools/runserver/main.py:75:32: Argument to this function is incorrect: Expected `_T`, found `bound method LiveReloadTask.cleanup_ctx(app: Application) -> @Todo(generic types.CoroutineType)` | |
+ error[lint:invalid-argument-type] aiohttp_devtools/runserver/serve.py:91:40: Argument to this function is incorrect: Expected `_T`, found `def on_prepare(request: Request, response: StreamResponse) -> @Todo(generic types.CoroutineType)` | |
+ error[lint:invalid-argument-type] aiohttp_devtools/runserver/serve.py:271:28: Argument to this function is incorrect: Expected `_T`, found `def cleanup_aux_app(app: Application) -> @Todo(generic types.CoroutineType)` | |
+ error[lint:invalid-argument-type] tests/cleanup_app.py:43:23: Argument to this function is incorrect: Expected `_T`, found `def startup(_app) -> Unknown` | |
+ error[lint:invalid-argument-type] tests/cleanup_app.py:44:24: Argument to this function is incorrect: Expected `_T`, found `def context(_app) -> Unknown` | |
+ error[lint:invalid-argument-type] tests/cleanup_app.py:45:24: Argument to this function is incorrect: Expected `_T`, found `def shutdown(_app) -> Unknown` | |
+ error[lint:invalid-argument-type] tests/test_runserver_serve.py:103:31: Argument to this function is incorrect: Expected `_T`, found `def cleanup_aux_app(app: Application) -> @Todo(generic types.CoroutineType)` | |
- Found 62 diagnostics | |
+ Found 71 diagnostics | |
isort (https://github.com/pycqa/isort) | |
+ error[lint:invalid-return-type] isort/api.py:516:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[Import]` | |
+ error[lint:invalid-return-type] isort/api.py:585:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[Import]` | |
+ error[lint:invalid-return-type] isort/api.py:617:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[Import]` | |
+ error[lint:no-matching-overload] isort/deprecated/finders.py:83:30: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-return-type] isort/deprecated/finders.py:252:29: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-return-type] isort/deprecated/finders.py:293:49: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-return-type] isort/deprecated/finders.py:326:40: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-assignment] isort/deprecated/finders.py:348:5: Object of type `tuple[Literal[ForcedSeparateFinder], Literal[LocalFinder], Literal[KnownPatternFinder], Literal[PathFinder], Literal[RequirementsFinder], Literal[DefaultFinder]]` is not assignable to `Sequence[type[BaseFinder]]` | |
+ error[lint:invalid-argument-type] isort/format.py:65:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] isort/format.py:66:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:unsupported-operator] isort/identify.py:161:21: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-assignment] isort/main.py:928:5: Object of type `list[str] | list[Unknown]` is not assignable to `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] isort/main.py:930:33: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] isort/main.py:930:33: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[str] | None` | |
+ error[lint:invalid-argument-type] isort/main.py:930:33: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[str] | None` | |
+ warning[lint:call-possibly-unbound-method] isort/main.py:933:13: Method `__getitem__` of type `Sequence[str] | None` is possibly unbound | |
+ error[lint:invalid-argument-type] isort/output.py:523:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None | list[_T]` | |
+ error[lint:invalid-argument-type] isort/output.py:533:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None | list[_T]` | |
+ error[lint:invalid-argument-type] isort/output.py:541:29: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None | list[_T]` | |
+ error[lint:unsupported-operator] isort/parse.py:377:21: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str] | @Todo(map_with_boundness: intersections with negative contributions)` | |
+ error[lint:unsupported-operator] isort/settings.py:590:48: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
+ error[lint:invalid-argument-type] isort/settings.py:663:52: Argument to this function is incorrect: Expected `Iterable[_S]`, found `Any | None` | |
+ error[lint:invalid-parameter-default] isort/wrap.py:13:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
- Found 52 diagnostics | |
+ Found 75 diagnostics | |
stone (https://github.com/dropbox/stone) | |
+ error[lint:no-matching-overload] stone/cli.py:146:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] stone/cli.py:315:49: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- Found 182 diagnostics | |
+ Found 184 diagnostics | |
black (https://github.com/psf/black) | |
+ error[lint:no-matching-overload] src/black/__init__.py:175:9: No overload of bound method `update` matches arguments | |
+ error[lint:unresolved-attribute] src/black/__init__.py:256:24: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/black/__init__.py:329:24: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:call-non-callable] src/black/__init__.py:1453:61: Method `__getitem__` of type `bound method dict[TargetVersion, set[Feature]].__getitem__(key: TargetVersion, /) -> set[Feature]` is not callable on object of type `dict[TargetVersion, set[Feature]]` | |
+ error[lint:invalid-return-type] src/black/comments.py:313:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[@Todo(Inference of subscript on special form)]` | |
+ error[lint:invalid-return-type] src/black/comments.py:322:9: Return type does not match returned value: Expected `Iterator[@Todo(Inference of subscript on special form)]`, found `None` | |
+ error[lint:invalid-return-type] src/black/comments.py:335:13: Return type does not match returned value: Expected `Iterator[@Todo(Inference of subscript on special form)]`, found `None` | |
+ error[lint:invalid-return-type] src/black/debug.py:26:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[T]` | |
+ error[lint:invalid-assignment] src/black/files.py:66:9: Object of type `tuple[Unknown, ...]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] src/black/files.py:68:9: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:unresolved-attribute] src/black/files.py:188:32: Type `_EnumMemberT` has no attribute `value` | |
+ error[lint:unsupported-operator] src/black/handle_ipynb_magics.py:85:12: Operator `in` is not supported for types `_T_co` and `str`, in comparing `Unknown | _T_co` with `str` | |
+ error[lint:invalid-return-type] src/black/linegen.py:139:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:165:41: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:184:43: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:190:43: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:206:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:227:47: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:231:49: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:235:46: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:239:49: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:259:44: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:283:47: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:293:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:300:48: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:320:17: Return type does not match returned value: Expected `Iterator[Line]`, found `None` | |
+ error[lint:invalid-return-type] src/black/linegen.py:324:47: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:340:47: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:346:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:370:41: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:374:46: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:379:55: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:384:43: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:401:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:418:43: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:506:43: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:510:41: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:523:44: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:535:13: Return type does not match returned value: Expected `Iterator[Line]`, found `None` | |
+ error[lint:invalid-return-type] src/black/linegen.py:665:14: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:680:21: Return type does not match returned value: Expected `Iterator[Line]`, found `None` | |
+ error[lint:invalid-argument-type] src/black/linegen.py:756:59: Argument to this function is incorrect: Expected `Sequence[Leaf]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:830:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-assignment] src/black/linegen.py:931:17: Object of type `list[_T]` is not assignable to `list[Leaf]` | |
+ error[lint:invalid-assignment] src/black/linegen.py:1185:9: Object of type `set[int]` is not assignable to `set[Unknown | int]` | |
+ error[lint:invalid-argument-type] src/black/linegen.py:1185:63: Argument to this function is incorrect: Expected `Sequence[Leaf]`, found `list[Leaf]` | |
+ error[lint:invalid-return-type] src/black/linegen.py:1293:40: Function can implicitly return `None`, which is not assignable to return type `Iterator[Line]` | |
+ error[lint:invalid-argument-type] src/black/linegen.py:1772:25: Argument to this function is incorrect: Expected `Leaf`, found `Leaf | None` | |
+ error[lint:invalid-argument-type] src/black/linegen.py:1799:49: Argument to this function is incorrect: Expected `Leaf`, found `Leaf | None` | |
+ error[lint:invalid-return-type] src/black/nodes.py:153:34: Function can implicitly return `None`, which is not assignable to return type `Iterator[T]` | |
+ error[lint:invalid-return-type] src/black/nodes.py:177:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[T]` | |
+ warning[lint:possibly-unbound-attribute] src/black/nodes.py:677:32: Attribute `type` on type `Node | None` is possibly unbound | |
+ error[lint:invalid-argument-type] src/black/output.py:83:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/black/output.py:83:18: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-return-type] src/black/parsing.py:176:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-return-type] src/black/ranges.py:212:48: Function can implicitly return `None`, which is not assignable to return type `Iterator[None]` | |
+ error[lint:invalid-return-type] src/black/ranges.py:218:13: Return type does not match returned value: Expected `Iterator[None]`, found `None` | |
+ error[lint:invalid-return-type] src/black/ranges.py:229:42: Function can implicitly return `None`, which is not assignable to return type `Iterator[None]` | |
+ error[lint:invalid-return-type] src/black/ranges.py:236:13: Return type does not match returned value: Expected `Iterator[None]`, found `None` | |
+ warning[lint:possibly-unbound-attribute] src/black/ranges.py:260:28: Attribute `type` on type `Node | None` is possibly unbound | |
+ error[lint:invalid-argument-type] src/black/ranges.py:271:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ warning[lint:possibly-unbound-attribute] src/black/ranges.py:272:30: Attribute `type` on type `Node | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/black/ranges.py:276:30: Attribute `prev_sibling` on type `Node | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/black/ranges.py:284:27: Attribute `parent` on type `Node | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/black/ranges.py:288:21: Attribute `type` on type `@Todo(Inference of subscript on special form) | None` is possibly unbound | |
+ error[lint:invalid-argument-type] src/black/ranges.py:292:54: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] src/black/ranges.py:461:15: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-return-type] src/black/ranges.py:507:12: Return type does not match returned value: Expected `Sequence[_LinesMapping]`, found `list[Unknown]` | |
- error[lint:invalid-assignment] src/black/trans.py:346:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[@Todo(Support for `typing.GenericAlias` instances in type expressions), @Todo(full tuple[...] support)]` | |
+ error[lint:invalid-assignment] src/black/trans.py:346:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[tuple[@Todo(Generic tuple specializations), ...], @Todo(full tuple[...] support)]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:422:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:557:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:780:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:877:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:1169:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:1428:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:1488:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-return-type] src/black/trans.py:1739:50: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[int, int]]` | |
+ error[lint:invalid-return-type] src/black/trans.py:1747:13: Return type does not match returned value: Expected `Iterator[tuple[int, int]]`, found `None` | |
+ error[lint:invalid-argument-type] src/black/trans.py:1785:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2001:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2028:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2051:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2089:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2133:53: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-argument-type] src/black/trans.py:2168:49: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Leaf]` | |
+ error[lint:invalid-return-type] src/blib2to3/pytree.py:211:25: Function can implicitly return `None`, which is not assignable to return type `Iterator[Leaf]` | |
- Found 140 diagnostics | |
+ Found 225 diagnostics | |
urllib3 (https://github.com/urllib3/urllib3) | |
+ error[lint:invalid-return-type] src/urllib3/_collections.py:386:20: Return type does not match returned value: Expected `list[str] | _DT`, found `_Sentinel | _DT | @Todo(Attribute access on enum classes)` | |
- error[lint:invalid-base] src/urllib3/util/url.py:81:5: Invalid class base with type `NamedTuple` (all bases must be a class, `Any`, `Unknown` or `Todo`) | |
+ error[lint:call-non-callable] test/__init__.py:175:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/__init__.py:205:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:120:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:257:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:273:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:invalid-return-type] test/conftest.py:328:12: Return type does not match returned value: Expected `AbstractSet[str | None]`, found `set[Unknown]` | |
+ error[lint:call-non-callable] test/conftest.py:335:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:342:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:349:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/conftest.py:359:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/contrib/emscripten/test_emscripten.py:14:5: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:invalid-argument-type] test/contrib/emscripten/test_emscripten.py:961:20: Argument to this function is incorrect: Expected `Sized`, found `@Todo(specialized non-generic class) | None` | |
+ error[lint:invalid-argument-type] test/contrib/emscripten/test_emscripten.py:961:20: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
+ error[lint:call-non-callable] test/contrib/emscripten/test_emscripten.py:1104:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/contrib/test_pyopenssl.py:26:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/contrib/test_pyopenssl_dependencies.py:19:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:unsupported-operator] test/contrib/test_socks.py:130:29: Operator `|` is unsupported between objects of type `Literal[bytes]` and `Literal[str]` | |
- error[lint:unsupported-operator] test/contrib/test_socks.py:194:29: Operator `|` is unsupported between objects of type `Literal[bytes]` and `Literal[str]` | |
+ error[lint:invalid-argument-type] test/test_connection.py:145:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] test/test_connectionpool.py:414:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] test/test_fields.py:65:37: Argument to this function is incorrect: Expected `dict[str, Unknown | None] | Sequence[tuple[str, Unknown | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/test_fields.py:69:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] test/test_fields.py:90:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] test/test_response.py:1486:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/test_ssl.py:131:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/test_util.py:141:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/test_util.py:323:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:non-subscriptable] test/test_util.py:413:53: Cannot subscript object of type `_T` with no `__getitem__` method | |
- error[lint:invalid-argument-type] test/test_util.py:639:24: Argument to this function is incorrect: Expected `Sized`, found `@Todo(specialized non-generic class) | None` | |
+ error[lint:invalid-argument-type] test/test_util.py:639:24: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
- error[lint:invalid-argument-type] test/test_util.py:642:24: Argument to this function is incorrect: Expected `Sized`, found `@Todo(specialized non-generic class) | None` | |
+ error[lint:invalid-argument-type] test/test_util.py:642:24: Argument to this function is incorrect: Expected `Sized`, found `list[Unknown] | None` | |
+ error[lint:call-non-callable] test/tz_stub.py:26:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- warning[lint:unused-ignore-comment] test/with_dummyserver/test_connection.py:63:32: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] test/with_dummyserver/test_connection.py:64:38: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_connectionpool.py:413:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ warning[lint:possibly-unbound-attribute] test/with_dummyserver/test_connectionpool.py:1021:24: Attribute `title` on type `Unknown | _T_co` is possibly unbound | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:79:20: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:83:20: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:88:20: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:99:20: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:not-iterable] test/with_dummyserver/test_https.py:248:39: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] test/with_dummyserver/test_https.py:248:39: Object of type `list[Unknown] | None` may not be iterable | |
- error[lint:not-iterable] test/with_dummyserver/test_https.py:299:39: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] test/with_dummyserver/test_https.py:299:39: Object of type `list[Unknown] | None` may not be iterable | |
- error[lint:not-iterable] test/with_dummyserver/test_https.py:745:25: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] test/with_dummyserver/test_https.py:745:25: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:751:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:no-matching-overload] test/with_dummyserver/test_https.py:759:21: No overload of bound method `__init__` matches arguments | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:803:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:815:21: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:820:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:822:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:851:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:853:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:not-iterable] test/with_dummyserver/test_https.py:864:35: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] test/with_dummyserver/test_https.py:864:35: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:868:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:not-iterable] test/with_dummyserver/test_https.py:882:35: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] test/with_dummyserver/test_https.py:882:35: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:886:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:919:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:998:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:1128:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:1229:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:1250:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_https.py:1255:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_poolmanager.py:522:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:505:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:535:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:555:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:583:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:602:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_proxy_poolmanager.py:626:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] test/with_dummyserver/test_proxy_poolmanager.py:637:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_proxy_poolmanager.py:885:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_socketlevel.py:1338:17: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ warning[lint:call-possibly-unbound-method] test/with_dummyserver/test_socketlevel.py:2130:54: Method `__getitem__` of type `@Todo(Support for `typing.TypeAlias`) | None` is possibly unbound | |
+ error[lint:call-non-callable] test/with_dummyserver/test_socketlevel.py:2137:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] test/with_dummyserver/test_socketlevel.py:2550:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:invalid-argument-type] test/with_dummyserver/test_socketlevel.py:2649:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- Found 528 diagnostics | |
+ Found 585 diagnostics | |
mkosi (https://github.com/systemd/mkosi) | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:187:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:190:44: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] mkosi/__init__.py:569:5: Default value of type `dict[Unknown, Unknown]` is not assignable to annotated parameter type `Mapping[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:569:5: Default value of type `dict[Unknown, Unknown]` is not assignable to annotated parameter type `Mapping[str, Sequence[Unknown]]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:615:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:618:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:686:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:691:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] mkosi/__init__.py:705:5: Object of type `list[Unknown]` is not assignable to `Sequence[Unknown]` | |
- error[lint:invalid-argument-type] mkosi/__init__.py:725:41: Argument to this function is incorrect: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:725:41: Argument to this function is incorrect: Expected `Mapping[str, Sequence[Unknown]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:729:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] mkosi/__init__.py:739:17: Operator `+=` is unsupported between objects of type `Sequence[Unknown]` and `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/__init__.py:782:52: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:807:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:881:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:951:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1020:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1062:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1067:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1114:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1119:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/__init__.py:1331:37: No overload of function `fspath` matches arguments | |
+ error[lint:no-matching-overload] mkosi/__init__.py:1332:33: No overload of function `fspath` matches arguments | |
+ error[lint:no-matching-overload] mkosi/__init__.py:1357:28: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1369:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1369:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1369:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1369:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1541:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:1597:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:1598:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:1599:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1679:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1688:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/__init__.py:1746:33: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1853:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1854:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1908:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1919:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:1920:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-return-type] mkosi/__init__.py:1960:16: Return type does not match returned value: Expected `list[Path]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-return-type] mkosi/__init__.py:1970:16: Return type does not match returned value: Expected `list[Path]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:unsupported-operator] mkosi/__init__.py:2009:27: Operator `+` is unsupported between objects of type `list[Path]` and `list[Path]` | |
+ error[lint:unsupported-operator] mkosi/__init__.py:2043:23: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:2086:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Partition]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2158:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2223:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2224:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2225:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2266:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2274:80: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Path] | list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2309:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2310:9: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Path]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2310:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2346:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2347:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2348:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-return-type] mkosi/__init__.py:2352:71: Function can implicitly return `None`, which is not assignable to return type `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2392:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2479:38: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Path] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2542:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2556:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2561:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:2993:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3025:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3042:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3043:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3061:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3076:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[0], Literal[65], Literal[73]]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3078:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3106:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3107:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3110:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3111:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3129:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3130:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3148:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3182:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3183:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3207:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3208:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3278:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3283:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:3356:5: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:3360:5: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:3361:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3430:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3431:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:3474:5: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-assignment] mkosi/__init__.py:3544:9: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3557:9: Argument to this function is incorrect: Expected `Sequence[Path]`, found `Unknown | list[Path] | list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3718:9: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3778:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3779:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:3906:21: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3908:43: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3982:54: Argument to this function is incorrect: Expected `Sequence[Path]`, found `Unknown | list[Path]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3983:54: Argument to this function is incorrect: Expected `Sequence[Path]`, found `Unknown | list[Path]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:3984:54: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4006:54: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4048:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["esp"], Literal["xbootldr"]]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4049:29: Argument to this function is incorrect: Expected `Sequence[Partition]`, found `list[Partition]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4053:30: Argument to this function is incorrect: Expected `Sequence[Partition]`, found `list[Partition]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4188:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4197:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4262:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4277:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4278:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4389:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4390:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4421:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4430:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str] | list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/__init__.py:4445:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] mkosi/__init__.py:4448:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] mkosi/__init__.py:4454:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] mkosi/__init__.py:4460:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4469:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4470:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4487:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4530:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4600:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4604:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4626:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4627:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4643:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4644:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4660:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4661:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/__init__.py:4684:45: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:no-matching-overload] mkosi/__init__.py:4739:22: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4760:38: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] mkosi/__init__.py:4949:5: Object of type `list[Unknown]` is not assignable to `Sequence[Config]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4980:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4980:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4980:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:4980:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__init__.py:5067:17: Argument to this function is incorrect: Expected `Sequence[Config]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] mkosi/__init__.py:5182:5: Object of type `list[_T]` is not assignable to `Sequence[Config]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:38:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:38:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:38:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:38:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:47:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/__main__.py:48:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:30:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:52:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/archive.py:69:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/archive.py:70:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:80:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:100:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:126:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/archive.py:140:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/bootloader.py:87:38: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Partition]` | |
+ error[lint:invalid-parameter-default] mkosi/bootloader.py:182:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:208:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:241:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:unresolved-attribute] mkosi/bootloader.py:261:12: Type `T` has no attribute `is_symlink` | |
+ error[lint:unresolved-attribute] mkosi/bootloader.py:261:31: Type `T` has no attribute `readlink` | |
+ error[lint:unresolved-attribute] mkosi/bootloader.py:262:93: Type `T` has no attribute `readlink` | |
+ error[lint:invalid-return-type] mkosi/bootloader.py:265:16: Return type does not match returned value: Expected `Path | None`, found `T` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:305:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:309:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:311:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[0], Literal[67]]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:324:49: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["biosdisk"]]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:358:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["chain"]]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:399:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:405:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:483:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:515:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:516:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:560:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:696:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:697:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:724:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:732:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:742:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:750:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:793:29: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:828:51: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:828:59: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:843:50: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/bootloader.py:843:58: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/burn.py:38:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/burn.py:47:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/burn.py:48:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:not-iterable] mkosi/completion.py:78:38: Object of type `Iterable[Any] | None` may not be iterable | |
+ error[lint:not-iterable] mkosi/completion.py:94:38: Object of type `list[str] | None` may not be iterable | |
+ warning[lint:possibly-unbound-attribute] mkosi/completion.py:165:31: Attribute `lstrip` on type `str | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] mkosi/completion.py:167:31: Attribute `lstrip` on type `str | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] mkosi/completion.py:174:24: Attribute `replace` on type `str | None` is possibly unbound | |
+ error[lint:unsupported-operator] mkosi/completion.py:205:37: Operator `in` is not supported for types `str` and `None`, in comparing `Literal["'"]` with `str | None` | |
+ warning[lint:possibly-unbound-attribute] mkosi/completion.py:213:24: Attribute `replace` on type `str | None` is possibly unbound | |
+ error[lint:invalid-parameter-default] mkosi/config.py:692:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:693:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:745:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-return-type] mkosi/config.py:766:12: Return type does not match returned value: Expected `list[Path]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1203:43: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1208:39: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:1258:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:1259:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:1281:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1346:19: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1487:27: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1489:26: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1515:20: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mkosi/config.py:1684:16: Return type does not match returned value: Expected `list[str]`, found `list[T]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1781:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1781:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1781:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:1781:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/config.py:1795:16: No overload of function `asdict` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/config.py:1806:27: Argument to this function is incorrect: Expected `SupportsRead[str | bytes]`, found `(dict[str, Any] & ~str & ~dict[Unknown, Unknown]) | (SupportsRead[str] & ~str & ~dict[Unknown, Unknown])` | |
+ error[lint:invalid-argument-type] mkosi/config.py:2179:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:2179:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:2179:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:2179:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/config.py:2347:13: No overload of function `asdict` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/config.py:2369:27: Argument to this function is incorrect: Expected `SupportsRead[str | bytes]`, found `(dict[str, Any] & ~str & ~dict[Unknown, Unknown]) | (SupportsRead[str] & ~str & ~dict[Unknown, Unknown])` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:2412:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:2413:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:2544:36: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["mkosi-tools"], Literal["mkosi-initrd"], Literal["mkosi-vm"], Literal["mkosi-addon"], Literal["mkosi-obs"]]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:3076:45: Argument to this function is incorrect: Expected `Sequence[ConfigSetting[object]]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkosi/config.py:3104:9: Argument to this function is incorrect: Expected `T | None`, found `list` | |
+ error[lint:invalid-argument-type] mkosi/config.py:3104:9: Argument to this function is incorrect: Expected `T | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:3534:39: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["default"]]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:3636:77: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:4141:39: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["custom"], Literal["microsoft"], Literal["microsoft-mok"]]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:4443:17: Argument to this function is incorrect: Expected `str`, found `str | None` | |
+ error[lint:invalid-assignment] mkosi/config.py:4511:13: Object of type `list[Unknown]` is not assignable to `str | Sequence[Any] | None` | |
+ error[lint:not-iterable] mkosi/config.py:4513:18: Object of type `Sequence[Any] | str | None` may not be iterable | |
+ error[lint:invalid-argument-type] mkosi/config.py:5047:31: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/config.py:5066:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-assignment] mkosi/config.py:5070:5: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:5246:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:5670:21: Argument to this function is incorrect: Expected `str`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] mkosi/config.py:5796:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:5797:32: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/config.py:5837:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/context.py:91:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/curl.py:12:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/curl.py:29:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/arch.py:52:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/arch.py:60:31: Argument to this function is incorrect: Expected `Sequence[PacmanRepository]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/arch.py:64:33: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/azure.py:32:28: Argument to this function is incorrect: Expected `Sequence[RpmRepository]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/azure.py:36:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/centos.py:73:28: Argument to this function is incorrect: Expected `Sequence[RpmRepository]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/centos.py:80:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mkosi/distributions/centos.py:200:48: Function can implicitly return `None`, which is not assignable to return type `Iterable[RpmRepository]` | |
+ error[lint:invalid-return-type] mkosi/distributions/centos.py:203:13: Return type does not match returned value: Expected `Iterable[RpmRepository]`, found `None` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:98:28: Argument to this function is incorrect: Expected `Sequence[AptRepository]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:141:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:147:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:168:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:177:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `@Todo(list comprehension type) | list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:262:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/debian.py:273:41: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/fedora.py:124:13: Argument to this function is incorrect: Expected `Sequence[RpmRepository]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/fedora.py:131:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/mageia.py:28:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/openmandriva.py:28:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/opensuse.py:82:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/distributions/opensuse.py:89:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ warning[lint:possibly-unbound-attribute] mkosi/distributions/opensuse.py:233:27: Attribute `startswith` on type `str | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] mkosi/distributions/opensuse.py:234:22: Attribute `partition` on type `str | None` is possibly unbound | |
+ error[lint:invalid-return-type] mkosi/distributions/rhel.py:109:48: Function can implicitly return `None`, which is not assignable to return type `Iterable[RpmRepository]` | |
+ error[lint:invalid-return-type] mkosi/distributions/rhel_ubi.py:52:48: Function can implicitly return `None`, which is not assignable to return type `Iterable[RpmRepository]` | |
+ error[lint:invalid-argument-type] mkosi/documentation.py:28:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/documentation.py:35:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/documentation.py:40:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/documentation.py:46:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/initrd.py:200:65: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-parameter-default] mkosi/installer/__init__.py:136:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/__init__.py:140:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/apt.py:221:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/apt.py:224:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/apt.py:299:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/apt.py:307:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/dnf.py:206:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/dnf.py:242:50: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/installer/dnf.py:253:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/dnf.py:254:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/pacman.py:173:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/installer/pacman.py:230:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/pacman.py:231:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/pacman.py:240:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/pacman.py:249:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/zypper.py:125:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/zypper.py:127:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] mkosi/installer/zypper.py:159:50: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/installer/zypper.py:165:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/installer/zypper.py:166:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mkosi/kmod.py:133:12: Return type does not match returned value: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] mkosi/kmod.py:210:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/manifest.py:105:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/manifest.py:152:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/manifest.py:171:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/manifest.py:212:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/partition.py:39:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/partition.py:42:29: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:177:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:179:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:294:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:302:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:321:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:322:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-parameter-default] mkosi/qemu.py:332:47: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:346:16: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:354:16: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:366:53: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Path]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:441:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] mkosi/qemu.py:446:21: Operator `+` is unsupported between objects of type `list[Unknown] | list[str]` and `list[str] | list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:558:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:563:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:655:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:677:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:678:36: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:725:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:736:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:747:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:755:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:778:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:788:32: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:813:34: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Path]` | |
+ error[lint:no-matching-overload] mkosi/qemu.py:837:31: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:913:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:917:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:927:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:931:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:935:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:940:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/qemu.py:957:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1001:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1043:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1074:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:unresolved-attribute] mkosi/qemu.py:1136:12: Type `_EnumMemberT` has no attribute `open` | |
+ error[lint:unresolved-attribute] mkosi/qemu.py:1138:12: Type `_EnumMemberT` has no attribute `feature` | |
+ error[lint:unresolved-attribute] mkosi/qemu.py:1138:60: Type `_EnumMemberT` has no attribute `available` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1324:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1337:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1360:38: Argument to this function is incorrect: Expected `Sequence[Partition]`, found `list[Partition]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1526:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Drive]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1526:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Drive]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1526:34: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Drive]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1582:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1583:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1586:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/qemu.py:1649:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:143:5: Default value of type `tuple[Literal[0]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:no-matching-overload] mkosi/run.py:144:61: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-parameter-default] mkosi/run.py:179:5: Default value of type `tuple[Literal[0]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:no-matching-overload] mkosi/run.py:180:61: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-parameter-default] mkosi/run.py:266:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:294:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:394:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:400:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/run.py:402:12: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-parameter-default] mkosi/run.py:472:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:473:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:474:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Path]` | |
+ error[lint:invalid-argument-type] mkosi/run.py:566:13: Argument to this function is incorrect: Expected `Sequence[Path]`, found `list[Unknown] | Sequence[Path]` | |
+ error[lint:invalid-parameter-default] mkosi/run.py:664:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[Unknown]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:98:1: Object of type `tuple[Literal[c_int]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:99:1: Object of type `tuple[Literal[c_char_p], Literal[c_void_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:100:1: Object of type `tuple[Literal[c_int], Literal[c_int]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:101:1: Object of type `tuple[Literal[c_char_p], Literal[c_char_p], Literal[c_char_p], Literal[c_ulong], Literal[c_char_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:102:1: Object of type `tuple[Literal[c_char_p], Literal[c_char_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:103:1: Object of type `tuple[Literal[c_char_p], Literal[c_int]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:104:1: Object of type `tuple[Literal[c_void_p], Literal[c_void_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:105:1: Object of type `tuple[Literal[c_void_p], Literal[c_void_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:106:1: Object of type `tuple[Literal[c_int], Literal[c_int], Literal[c_int]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:194:5: Object of type `tuple[Literal[c_int], Literal[c_ulong], Literal[c_ulong], Literal[c_ulong], Literal[c_ulong]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:228:5: Object of type `tuple[Literal[c_uint32]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:230:5: Object of type `tuple[Literal[c_void_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:232:5: Object of type `tuple[Literal[c_char_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:233:5: Object of type `tuple[Literal[c_void_p], Literal[c_uint32], Literal[c_int], Literal[c_uint]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:239:5: Object of type `tuple[Literal[c_void_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:281:5: Object of type `tuple[Literal[c_int], Literal[c_long], Literal[c_void_p]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:298:5: Object of type `tuple[Literal[c_int], Literal[c_long], Literal[c_void_p]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:313:5: Object of type `tuple[Literal[c_char_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:331:9: Object of type `tuple[Literal[c_int], Literal[c_char_p], Literal[c_uint]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:334:9: Object of type `tuple[Literal[c_long], Literal[c_int], Literal[c_char_p], Literal[c_uint]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:347:13: Object of type `tuple[Literal[c_int], Literal[c_char_p], Literal[c_uint], Literal[c_void_p], Literal[c_size_t]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:356:13: Object of type `tuple[Literal[c_long], Literal[c_int], Literal[c_char_p], Literal[c_uint], Literal[c_void_p], Literal[c_size_t]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:370:13: Object of type `tuple[Literal[c_int], Literal[c_char_p], Literal[c_int], Literal[c_char_p], Literal[c_uint]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-assignment] mkosi/sandbox.py:379:13: Object of type `tuple[Literal[c_long], Literal[c_int], Literal[c_char_p], Literal[c_int], Literal[c_char_p], Literal[c_uint]]` is not assignable to attribute `argtypes` on type `Unknown | _NamedFuncPointer` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:32:28: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:50:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:59:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:78:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:87:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[str]` | |
+ error[lint:invalid-argument-type] mkosi/sysupdate.py:88:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:28:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:54:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:55:29: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:151:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:151:38: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/tree.py:161:78: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/tree.py:171:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:173:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] mkosi/tree.py:177:78: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] mkosi/tree.py:193:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:196:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[T]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:205:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/tree.py:207:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[T]` | |
+ error[lint:invalid-argument-type] mkosi/user.py:144:18: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkosi/vmspawn.py:129:17: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
- Found 334 diagnostics | |
+ Found 736 diagnostics | |
typeshed-stats (https://github.com/AlexWaygood/typeshed-stats) | |
+ error[lint:invalid-argument-type] scripts/regenerate.py:22:48: Argument to this function is incorrect: Expected `Sequence[PackageInfo | FileInfo]`, found `Sequence[PackageInfo]` | |
+ error[lint:invalid-argument-type] scripts/regenerate.py:23:46: Argument to this function is incorrect: Expected `Sequence[PackageInfo | FileInfo]`, found `Sequence[PackageInfo]` | |
+ error[lint:unresolved-attribute] src/typeshed_stats/_cli.py:71:25: Type `_EnumMemberT` has no attribute `file_extension` | |
+ error[lint:invalid-argument-type] src/typeshed_stats/_cli.py:335:45: Argument to this function is incorrect: Expected `str`, found `str | None` | |
+ error[lint:invalid-return-type] src/typeshed_stats/gather.py:503:20: Return type does not match returned value: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-return-type] src/typeshed_stats/gather.py:1392:12: Return type does not match returned value: Expected `Sequence[PackageInfo]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/conftest.py:278:2: No overload of function `fixture` matches arguments | |
+ error[lint:invalid-argument-type] tests/test__cli.py:68:14: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[str]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:81:14: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[str]` | |
+ error[lint:unresolved-attribute] tests/test__cli.py:99:42: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:140:25: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:145:29: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:145:63: Argument to this function is incorrect: Expected `OutputOption`, found `_EnumMemberT` | |
+ error[lint:no-matching-overload] tests/test__cli.py:195:2: No overload of function `fixture` matches arguments | |
+ error[lint:invalid-argument-type] tests/test__cli.py:296:29: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:301:25: Argument to this function is incorrect: Expected `list[str]`, found `list[_T]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:332:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["to_file_args"], Literal["failure_message"]]` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:473:48: Argument to this function is incorrect: Expected `OutputOption`, found `_EnumMemberT` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:560:39: Argument to this function is incorrect: Expected `OutputOption`, found `_EnumMemberT` | |
+ error[lint:invalid-argument-type] tests/test__cli.py:587:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["logging_level"], Literal["logging_expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:81:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["enum_member"], Literal["expected_formatted_name"]]` | |
+ error[lint:no-matching-overload] tests/test_gather.py:172:2: No overload of function `fixture` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_gather.py:254:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_contents"], Literal["expected_result_name"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:309:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_contents"], Literal["expected_result"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:435:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["package_name"], Literal["expected_result_name"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:453:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_to_write"], Literal["expected_result_name"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:477:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["typeshed_version"], Literal["pypi_version"], Literal["expected_result_name"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:530:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["package_name"], Literal["get_session"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:564:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_text"], Literal["expected_result_name"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:597:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_text"], Literal["expected_upstream_url"]]` | |
+ error[lint:invalid-argument-type] tests/test_gather.py:633:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata_text"], Literal["expected_completeness_level"]]` | |
+ error[lint:invalid-argument-type] tests/test_serialize.py:36:31: Argument to this function is incorrect: Expected `Sequence[PackageInfo | FileInfo]`, found `Sequence[PackageInfo]` | |
+ error[lint:invalid-argument-type] tests/test_serialize.py:50:31: Argument to this function is incorrect: Expected `Sequence[PackageInfo | FileInfo]`, found `Sequence[FileInfo]` | |
+ error[lint:unsupported-operator] tests/test_serialize.py:92:20: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[PackageInfo]` | |
+ error[lint:invalid-argument-type] tests/test_serialize.py:114:30: Argument to this function is incorrect: Expected `Sequence[PackageInfo | FileInfo]`, found `Sequence[FileInfo]` | |
+ error[lint:unsupported-operator] tests/test_serialize.py:136:20: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[PackageInfo]` | |
- Found 36 diagnostics | |
+ Found 72 diagnostics | |
dragonchain (https://github.com/dragonchain/dragonchain) | |
- error[lint:unresolved-attribute] dragonchain/lib/interfaces/storage_utest.py:100:9: Type `(def list_objects(location: str, prefix: str) -> list) | (def list_objects(location: str, prefix: str) -> list)` has no attribute `assert_called_once_with` | |
+ error[lint:unresolved-attribute] dragonchain/lib/interfaces/storage_utest.py:100:9: Type `(def list_objects(location: str, prefix: str) -> list[Unknown]) | (def list_objects(location: str, prefix: str) -> list[Unknown])` has no attribute `assert_called_once_with` | |
- error[lint:unresolved-attribute] dragonchain/lib/interfaces/storage_utest.py:140:9: Type `def list_objects(prefix: str) -> list` has no attribute `assert_called_once_with` | |
+ error[lint:unresolved-attribute] dragonchain/lib/interfaces/storage_utest.py:140:9: Type `def list_objects(prefix: str) -> list[Unknown]` has no attribute `assert_called_once_with` | |
+ error[lint:invalid-argument-type] dragonchain/webserver/lib/transactions_utest.py:79:49: Argument to this function is incorrect: Expected `Sequence[dict[Unknown, Unknown]]`, found `list[Unknown]` | |
- Found 345 diagnostics | |
+ Found 346 diagnostics | |
pydantic (https://github.com/pydantic/pydantic) | |
+ error[lint:invalid-return-type] pydantic/_internal/_discriminated_union.py:307:20: Return type does not match returned value: Expected `list[str | int]`, found `list[SupportsRichComparisonT]` | |
+ warning[lint:possibly-unbound-attribute] pydantic/_internal/_fields.py:323:78: Attribute `default` on type `Any | PydanticUndefinedType` is possibly unbound | |
+ error[lint:invalid-assignment] pydantic/_internal/_fields.py:329:17: Object of type `Any` is not assignable to attribute `default` on type `Any | PydanticUndefinedType` | |
+ warning[lint:possibly-unbound-attribute] pydantic/_internal/_fields.py:329:42: Attribute `default` on type `Any | PydanticUndefinedType` is possibly unbound | |
+ error[lint:invalid-argument-type] pydantic/_internal/_generate_schema.py:1239:103: Argument to this function is incorrect: Expected `Decorator[FieldValidatorDecoratorInfo]`, found `Decorator[FieldDecoratorInfoType]` | |
+ error[lint:invalid-argument-type] pydantic/_internal/_generate_schema.py:1289:13: Argument to this function is incorrect: Expected `str | list[str | int] | list[list[str | int]] | None`, found `list[str | int] | list[list[str | int]] | str | AliasPath | AliasChoices | None` | |
- error[lint:invalid-assignment] pydantic/_internal/_generics.py:97:1: Object of type `ContextVar[None]` is not assignable to `ContextVar[WeakValueDictionary[@Todo(Support for `typing.GenericAlias` instances in type expressions), type[BaseModel]] | None]` | |
+ error[lint:invalid-assignment] pydantic/_internal/_generics.py:97:1: Object of type `ContextVar[None]` is not assignable to `ContextVar[WeakValueDictionary[tuple[@Todo(Generic tuple specializations), ...], type[BaseModel]] | None]` | |
- error[lint:invalid-assignment] pydantic/_internal/_generics.py:396:1: Object of type `ContextVar[None]` is not assignable to `ContextVar[@Todo(specialized non-generic class) | None]` | |
+ error[lint:invalid-assignment] pydantic/_internal/_generics.py:396:1: Object of type `ContextVar[None]` is not assignable to `ContextVar[set[str] | None]` | |
- error[lint:invalid-assignment] pydantic/_internal/_known_annotated_metadata.py:70:1: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] pydantic/_internal/_known_annotated_metadata.py:70:1: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, set[str]]` | |
+ error[lint:invalid-argument-type] pydantic/_internal/_signature.py:188:22: Argument to this function is incorrect: Expected `Sequence[Parameter] | None`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] pydantic/_internal/_validators.py:50:9: Object of type `list[Unknown]` is not assignable to `Sequence[Any]` | |
+ error[lint:invalid-return-type] pydantic/_internal/_validators.py:61:16: Return type does not match returned value: Expected `Sequence[Any]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] pydantic/_internal/_validators.py:376:34: Argument to this function is incorrect: Expected `SupportsAbs[Unknown]`, found `int | Literal["n", "N", "F"]` | |
+ error[lint:invalid-assignment] pydantic/deprecated/copy_internals.py:210:9: Object of type `set[str]` is not assignable to `AbstractSet[str]` | |
+ error[lint:invalid-assignment] pydantic/deprecated/copy_internals.py:212:9: Object of type `set[Unknown]` is not assignable to `AbstractSet[str]` | |
+ error[lint:invalid-assignment] pydantic/deprecated/copy_internals.py:213:9: Object of type `set[Unknown | _T]` is not assignable to `AbstractSet[str]` | |
+ error[lint:invalid-parameter-default] pydantic/fields.py:790:5: Default value of type `PydanticUndefinedType` is not assignable to annotated parameter type `list[Any] | None` | |
+ error[lint:invalid-parameter-default] pydantic/fields.py:829:5: Default value of type `PydanticUndefinedType` is not assignable to annotated parameter type `list[Any] | None` | |
+ error[lint:invalid-parameter-default] pydantic/fields.py:868:5: Default value of type `PydanticUndefinedType` is not assignable to annotated parameter type `list[Any] | None` | |
+ error[lint:invalid-parameter-default] pydantic/fields.py:906:5: Default value of type `PydanticUndefinedType` is not assignable to annotated parameter type `list[Any] | None` | |
+ error[lint:invalid-parameter-default] pydantic/fields.py:945:5: Default value of type `PydanticUndefinedType` is not assignable to annotated parameter type `list[Any] | None` | |
- error[lint:invalid-assignment] pydantic/json_schema.py:158:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] pydantic/json_schema.py:158:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown, list[Unknown | dict[str, Any]]]` | |
- error[lint:type-assertion-failure] pydantic/json_schema.py:1426:13: Expected type `Never`, got `Unknown & ~str & ~list` instead | |
+ error[lint:type-assertion-failure] pydantic/json_schema.py:1426:13: Expected type `Never`, got `Unknown & ~str & ~list[Unknown]` instead | |
+ error[lint:invalid-return-type] pydantic/mypy.py:660:77: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:unresolved-attribute] pydantic/mypy.py:1317:16: Type `_T` has no attribute `type_annotation` | |
+ error[lint:unresolved-attribute] pydantic/mypy.py:1318:26: Type `_T` has no attribute `type_annotation` | |
+ error[lint:unresolved-attribute] pydantic/mypy.py:1319:26: Type `_T` has no attribute `variable` | |
+ error[lint:unresolved-attribute] pydantic/mypy.py:1320:26: Type `_T` has no attribute `kind` | |
+ error[lint:invalid-argument-type] pydantic/type_adapter.py:717:88: Argument to this function is incorrect: Expected `Sequence[tuple[JsonSchemaKeyT, Unknown, Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] pydantic/type_adapter.py:717:88: Argument to this function is incorrect: Expected `Sequence[tuple[JsonSchemaKeyT, Unknown, Unknown]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] pydantic/type_adapter.py:717:88: Argument to this function is incorrect: Expected `Sequence[tuple[JsonSchemaKeyT, Unknown, Unknown]]`, found `list[Unknown]` | |
- error[lint:not-iterable] pydantic/types.py:1695:25: Object of type `Any | None` may not be iterable | |
+ error[lint:invalid-argument-type] pydantic/v1/dataclasses.py:460:39: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] pydantic/v1/env_settings.py:107:17: Object of type `set[Unknown]` is not assignable to `list[Unknown] | AbstractSet[str]` | |
+ error[lint:invalid-assignment] pydantic/v1/env_settings.py:109:17: Object of type `set[Unknown]` is not assignable to `list[Unknown] | AbstractSet[str]` | |
+ error[lint:unresolved-attribute] pydantic/v1/env_settings.py:175:25: Type `_KT` has no attribute `lower` | |
- error[lint:not-iterable] pydantic/v1/env_settings.py:240:101: Object of type `list | None` may not be iterable | |
+ error[lint:not-iterable] pydantic/v1/env_settings.py:240:101: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:invalid-argument-type] pydantic/v1/fields.py:1140:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] pydantic/v1/generics.py:187:72: Function can implicitly return `None`, which is not assignable to return type `Iterator[type[Any]]` | |
+ error[lint:invalid-argument-type] pydantic/v1/main.py:531:39: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] pydantic/v1/main.py:554:35: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] pydantic/v1/main.py:1056:47: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] pydantic/v1/main.py:1111:52: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:unresolved-attribute] pydantic/v1/mypy.py:860:16: Type `_T` has no attribute `type_annotation` | |
+ error[lint:unresolved-attribute] pydantic/v1/mypy.py:861:26: Type `_T` has no attribute `type_annotation` | |
+ error[lint:unresolved-attribute] pydantic/v1/mypy.py:862:35: Type `_T` has no attribute `variable` | |
+ error[lint:unresolved-attribute] pydantic/v1/mypy.py:863:26: Type `_T` has no attribute `kind` | |
+ error[lint:invalid-argument-type] pydantic/v1/schema.py:390:52: Argument to this function is incorrect: Expected `Sequence[ModelField]`, found `list[Unknown] | None` | |
- error[lint:not-iterable] pydantic/v1/typing.py:540:22: Object of type `list | None` may not be iterable | |
+ error[lint:not-iterable] pydantic/v1/typing.py:540:22: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:invalid-argument-type] pydantic/v1/utils.py:298:22: Argument to this function is incorrect: Expected `Sequence[Parameter] | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] pydantic/v1/utils.py:610:17: Argument to this function is incorrect: Expected `Never`, found `(Unknown & ~Mapping[Unknown, Unknown] & ~AbstractSet) | (Mapping[@Todo(Inference of subscript on special form), Any] & ~Mapping[Unknown, Unknown] & ~AbstractSet)` | |
+ error[lint:invalid-argument-type] pydantic/v1/utils.py:610:17: Argument to this function is incorrect: Expected `Never`, found `(Unknown & ~Mapping[Unknown, Unknown] & ~AbstractSet[Unknown]) | (AbstractSet[@Todo(Inference of subscript on special form)] & ~Mapping[Unknown, Unknown] & ~AbstractSet[Unknown]) | (Mapping[@Todo(Inference of subscript on special form), Any] & ~Mapping[Unknown, Unknown] & ~AbstractSet[Unknown])` | |
- error[lint:invalid-return-type] pydantic/version.py:84:12: Return type does not match returned value: Expected `tuple[int, int, int]`, found `tuple` | |
+ error[lint:invalid-return-type] pydantic/version.py:84:12: Return type does not match returned value: Expected `tuple[int, int, int]`, found `tuple[Unknown, ...]` | |
- Found 906 diagnostics | |
+ Found 947 diagnostics | |
ignite (https://github.com/pytorch/ignite) | |
- error[lint:invalid-argument-type] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:256:58: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list` | |
+ error[lint:invalid-argument-type] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:256:58: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:272:13: Attribute `half` on type `Unknown | Sequence | Mapping[Unknown, Unknown]` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:272:13: Attribute `half` on type `Unknown | Sequence[Unknown] | Mapping[Unknown, Unknown] | str | bytes` is possibly unbound | |
- error[lint:invalid-argument-type] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:360:58: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] examples/notebooks/Cifar10_Ax_hyperparam_tuning.ipynb:360:58: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] examples/notebooks/TextCNN.ipynb:31:16: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] examples/references/segmentation/pascal_voc2012/dataflow.py:229:9: Attribute `long` on type `Unknown | Sequence | Mapping[Unknown, Unknown]` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] examples/references/segmentation/pascal_voc2012/dataflow.py:229:9: Attribute `long` on type `Unknown | Sequence[Unknown] | Mapping[Unknown, Unknown] | str | bytes` is possibly unbound | |
- warning[lint:redundant-cast] ignite/distributed/comp_models/base.py:371:16: Value is already of type `list` | |
+ warning[lint:redundant-cast] ignite/distributed/comp_models/base.py:371:16: Value is already of type `list[Unknown]` | |
+ error[lint:invalid-return-type] ignite/engine/engine.py:1160:16: Return type does not match returned value: Expected `Generator[State, None, int | float]`, found `int | float` | |
- error[lint:unsupported-operator] ignite/engine/events.py:94:57: Operator `>` is not supported for types `Integral` and `int`, in comparing `(int & Integral) | (list & Integral)` with `Literal[0]` | |
+ error[lint:unsupported-operator] ignite/engine/events.py:94:57: Operator `>` is not supported for types `Integral` and `int`, in comparing `(int & Integral) | (list[Unknown] & Integral)` with `Literal[0]` | |
- error[lint:call-non-callable] ignite/handlers/base_logger.py:48:20: Object of type `list` is not callable | |
+ error[lint:call-non-callable] ignite/handlers/base_logger.py:48:20: Object of type `list[Unknown]` is not callable | |
+ error[lint:unresolved-attribute] ignite/handlers/time_profilers.py:256:22: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:invalid-return-type] ignite/metrics/mean_average_precision.py:297:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-assignment] ignite/metrics/nlp/rouge.py:393:13: Object of type `list[Unknown]` is not assignable to `Sequence[str | int] | None` | |
+ error[lint:not-iterable] ignite/metrics/nlp/rouge.py:395:18: Object of type `Sequence[str | int] | None` may not be iterable | |
+ error[lint:invalid-return-type] ignite/metrics/precision.py:88:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown, Unknown]` | |
- warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:34:88: Value is already of type `list` | |
+ warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:34:88: Value is already of type `list[Unknown]` | |
- warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:37:64: Value is already of type `list` | |
+ warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:37:64: Value is already of type `list[Unknown]` | |
- warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:39:84: Value is already of type `list` | |
+ warning[lint:redundant-cast] ignite/metrics/vision/object_detection_average_precision_recall.py:39:84: Value is already of type `list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/conftest.py:125:34: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/conftest.py:125:34: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/contrib/engines/test_tbptt.py:24:12: Attribute `grad_fn` on type `Unknown | Sequence | Mapping[Unknown, Unknown]` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/contrib/engines/test_tbptt.py:24:12: Attribute `grad_fn` on type `Unknown | Sequence[Unknown] | Mapping[Unknown, Unknown] | str | bytes` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/distributed/utils/__init__.py:194:12: Attribute `shape` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/distributed/utils/__init__.py:194:12: Attribute `shape` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/distributed/utils/__init__.py:195:12: Attribute `dtype` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/distributed/utils/__init__.py:195:12: Attribute `dtype` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/distributed/utils/__init__.py:437:25: Argument to this function is incorrect: Expected `list`, found `Literal[1]` | |
+ error[lint:invalid-argument-type] tests/ignite/distributed/utils/__init__.py:437:25: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal[1]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:457:24: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:457:24: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:459:24: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:459:24: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:482:24: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:482:24: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:484:24: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/distributed/utils/__init__.py:484:24: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:no-matching-overload] tests/ignite/distributed/utils/test_native.py:416:29: No overload of bound method `__init__` matches arguments | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:28: Argument to this function is incorrect: Expected `list`, found `Literal["a"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:28: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["a"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:33: Argument to this function is incorrect: Expected `list`, found `Literal["b"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:33: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["b"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:38: Argument to this function is incorrect: Expected `list`, found `Literal["c"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:19:38: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["c"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:28: Argument to this function is incorrect: Expected `list`, found `Literal["a"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:28: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["a"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:33: Argument to this function is incorrect: Expected `list`, found `Literal["b"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:33: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["b"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:38: Argument to this function is incorrect: Expected `list`, found `Literal["c"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:38:38: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["c"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:57:32: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:57:32: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:60:32: Argument to this function is incorrect: Expected `list`, found `Literal["str"]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:60:32: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["str"]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:60:39: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:60:39: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:63:32: Argument to this function is incorrect: Expected `list`, found `Literal[1]` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:63:32: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal[1]` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:66:32: Argument to this function is incorrect: Expected `list`, found `A` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_custom_events.py:66:32: Argument to this function is incorrect: Expected `list[Unknown]`, found `A` | |
- error[lint:invalid-argument-type] tests/ignite/engine/test_engine.py:75:24: Argument to this function is incorrect: Expected `Iterable | None`, found `def data() -> Unknown` | |
+ error[lint:invalid-argument-type] tests/ignite/engine/test_engine.py:75:24: Argument to this function is incorrect: Expected `Iterable[Unknown] | None`, found `def data() -> Unknown` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_checkpoint.py:52:20: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_checkpoint.py:52:20: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_checkpoint.py:568:17: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_checkpoint.py:568:17: Argument to this function is incorrect: Expected `Mapping[Unknown, Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:154:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:154:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:174:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:174:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:192:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:192:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:212:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_clearml_logger.py:212:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-assignment] tests/ignite/handlers/test_fbresearch_logger.py:83:5: Object of type `list` is not assignable to attribute `output` on type `Unknown | State` | |
+ error[lint:invalid-assignment] tests/ignite/handlers/test_fbresearch_logger.py:83:5: Object of type `list[Unknown]` is not assignable to attribute `output` on type `Unknown | State` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:338:25: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:338:25: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:356:64: Argument to this function is incorrect: Expected `list`, found `Literal["abc"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:356:64: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["abc"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:360:84: Argument to this function is incorrect: Expected `list | tuple[str] | None`, found `Literal["abc"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:360:84: Argument to this function is incorrect: Expected `list[Unknown] | tuple[str] | None`, found `Literal["abc"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:755:42: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:755:42: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:973:13: Argument to this function is incorrect: Expected `list | None`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:973:13: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `tuple[()]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:1161:29: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:1161:29: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:1170:72: Argument to this function is incorrect: Expected `list | None`, found `Literal["ab"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_param_scheduler.py:1170:72: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["ab"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_polyaxon_logger.py:96:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_polyaxon_logger.py:96:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_polyaxon_logger.py:110:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_polyaxon_logger.py:110:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_state_param_scheduler.py:145:76: Argument to this function is incorrect: Expected `list`, found `None` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_state_param_scheduler.py:145:76: Argument to this function is incorrect: Expected `list[Unknown]`, found `None` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:144:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:144:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:158:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:158:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:173:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_tensorboard_logger.py:173:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_time_profilers.py:688:35: Argument to this function is incorrect: Expected `list`, found `Literal["custom_event"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_time_profilers.py:688:35: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["custom_event"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:141:36: Argument to this function is incorrect: Expected `str | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:141:36: Argument to this function is incorrect: Expected `str | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:181:36: Argument to this function is incorrect: Expected `str | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:181:36: Argument to this function is incorrect: Expected `str | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:242:36: Argument to this function is incorrect: Expected `str | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:242:36: Argument to this function is incorrect: Expected `str | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:366:36: Argument to this function is incorrect: Expected `str | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_visdom_logger.py:366:36: Argument to this function is incorrect: Expected `str | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:121:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:121:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:133:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:133:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:156:36: Argument to this function is incorrect: Expected `list | None`, found `Literal["all"]` | |
+ error[lint:invalid-argument-type] tests/ignite/handlers/test_wandb_logger.py:156:36: Argument to this function is incorrect: Expected `list[Unknown] | None`, found `Literal["all"]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_calinski_harabasz_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_davies_bouldin_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:141:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:142:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_silhouette_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_silhouette_score.py:174:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_silhouette_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/clustering/test_silhouette_score.py:175:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:192:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/clustering/test_silhouette_score.py:193:27: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:26:29: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:26:52: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:121:33: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:122:34: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:123:34: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:124:34: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:137:9: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:138:9: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:193:44: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:193:50: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:51: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:51: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:51: Argument to this function is incorrect: Expected `Sequence[Sequence[Sequence[Any]]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:65: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:65: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_bleu.py:209:65: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_rouge.py:69:15: Argument to this function is incorrect: Expected `Sequence[str | int] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_rouge.py:126:19: Argument to this function is incorrect: Expected `Sequence[str | int] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_rouge.py:156:19: Argument to this function is incorrect: Expected `Sequence[str | int] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:34:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:34:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:34:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:36:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:36:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:36:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:38:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:38:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:38:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:40:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:40:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:40:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:42:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:42:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/nlp/test_utils.py:42:35: Argument to this function is incorrect: Expected `Sequence[Sequence[Any]]`, found `list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:112:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:112:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:113:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:113:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_canberra_metric.py:138:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_canberra_metric.py:138:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_canberra_metric.py:139:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_canberra_metric.py:139:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:159:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:159:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:160:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_canberra_metric.py:160:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:106:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:106:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:107:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:107:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_absolute_error.py:135:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_absolute_error.py:135:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_absolute_error.py:136:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_absolute_error.py:136:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:156:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:156:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:157:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_absolute_error.py:157:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:127:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:127:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:128:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:128:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_fractional_bias.py:133:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_fractional_bias.py:133:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_bias.py:158:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_bias.py:158:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_bias.py:159:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_fractional_bias.py:159:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:179:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:179:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:180:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_fractional_bias.py:180:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_fractional_bias.py:183:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_fractional_bias.py:183:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:109:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:109:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:110:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:110:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:115:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:115:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:139:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:139:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:140:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:140:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:158:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:158:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:159:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:159:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:162:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_geometric_mean_absolute_error.py:162:22: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:96:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:96:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:97:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:97:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:124:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:124:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:125:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:125:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:143:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:143:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:144:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_geometric_mean_relative_absolute_error.py:144:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:148:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:148:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:149:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:149:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_kendall_correlation.py:176:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_kendall_correlation.py:176:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_kendall_correlation.py:177:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_kendall_correlation.py:177:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:194:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:194:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:195:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_kendall_correlation.py:195:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:104:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:104:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:105:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:105:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_manhattan_distance.py:131:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_manhattan_distance.py:131:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_manhattan_distance.py:132:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_manhattan_distance.py:132:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:152:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:152:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:153:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_manhattan_distance.py:153:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:96:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:96:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:97:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:97:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_maximum_absolute_error.py:125:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_maximum_absolute_error.py:125:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_maximum_absolute_error.py:126:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_maximum_absolute_error.py:126:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:144:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:144:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:145:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_maximum_absolute_error.py:145:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:131:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:131:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:132:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:132:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:137:27: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:137:27: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:162:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:162:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:163:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:163:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:181:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:181:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:182:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:182:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:185:27: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/regression/test_mean_absolute_relative_error.py:185:27: Argument to this function is incorrect: Expected `Sized`, found `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:90:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:90:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:91:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:91:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_error.py:119:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_error.py:119:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_error.py:120:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_error.py:120:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:138:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:138:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:139:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_error.py:139:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:107:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:107:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:108:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:108:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_normalized_bias.py:138:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_normalized_bias.py:138:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_normalized_bias.py:139:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_mean_normalized_bias.py:139:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:157:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:157:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:158:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_mean_normalized_bias.py:158:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:117:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:117:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:118:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:118:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_error.py:145:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_error.py:145:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_error.py:146:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_error.py:146:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:164:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:164:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:165:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_error.py:165:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:123:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:123:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:124:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:124:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:151:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:151:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:152:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:152:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:170:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:170:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:171:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_absolute_percentage_error.py:171:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:124:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:124:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:125:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:125:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:151:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:151:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:152:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:152:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:170:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:170:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:171:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_median_relative_absolute_error.py:171:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:174:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:174:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:175:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:175:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_pearson_correlation.py:201:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_pearson_correlation.py:201:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_pearson_correlation.py:202:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_pearson_correlation.py:202:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:219:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:219:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:220:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_pearson_correlation.py:220:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:108:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:108:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:109:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:109:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_r2_score.py:133:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_r2_score.py:133:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_r2_score.py:134:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_r2_score.py:134:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:154:29: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:154:29: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:154:51: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_r2_score.py:154:51: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:141:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:141:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:142:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:142:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_spearman_correlation.py:168:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_spearman_correlation.py:168:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_spearman_correlation.py:169:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_spearman_correlation.py:169:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:186:20: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:186:20: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:187:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_spearman_correlation.py:187:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:101:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:101:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:102:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:102:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_wave_hedges_distance.py:130:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_wave_hedges_distance.py:130:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_wave_hedges_distance.py:131:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/regression/test_wave_hedges_distance.py:131:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:149:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:149:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:150:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/regression/test_wave_hedges_distance.py:150:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_accuracy.py:26:26: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_accuracy.py:29:26: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_accuracy.py:32:26: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_accuracy.py:39:25: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:225:45: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:225:45: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:226:40: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:226:40: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:250:45: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:250:45: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:251:40: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:251:40: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:288:45: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:288:45: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:289:40: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:289:40: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:317:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:317:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_accuracy.py:318:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_accuracy.py:318:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:341:39: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:341:39: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:375:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:375:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:376:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:376:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:444:33: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_accuracy.py:444:33: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_accuracy.py:445:40: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_accuracy.py:445:40: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:468:39: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_accuracy.py:468:39: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:171:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:171:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:172:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:172:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:229:44: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:229:44: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:229:66: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_average_precision.py:229:66: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:28:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:28:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_classification_report.py:29:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_classification_report.py:29:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_classification_report.py:55:9: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_classification_report.py:55:9: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:102:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:102:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:103:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_classification_report.py:103:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:188:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:188:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:189:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:189:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cohen_kappa.py:231:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cohen_kappa.py:231:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cohen_kappa.py:232:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cohen_kappa.py:232:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:252:38: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:252:38: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:252:60: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cohen_kappa.py:252:60: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_confusion_matrix.py:520:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_confusion_matrix.py:520:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_confusion_matrix.py:521:31: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_confusion_matrix.py:521:31: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cosine_similarity.py:104:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cosine_similarity.py:104:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cosine_similarity.py:105:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_cosine_similarity.py:105:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cosine_similarity.py:121:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cosine_similarity.py:121:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cosine_similarity.py:122:26: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_cosine_similarity.py:122:26: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_entropy.py:102:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_entropy.py:102:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_entropy.py:103:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_entropy.py:103:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_entropy.py:120:35: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_entropy.py:120:35: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:unresolved-attribute] tests/ignite/metrics/test_epoch_metric.py:67:17: Type `_T` has no attribute `device` | |
+ error[lint:unresolved-attribute] tests/ignite/metrics/test_epoch_metric.py:81:17: Type `_T` has no attribute `device` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_epoch_metric.py:171:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_epoch_metric.py:171:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_epoch_metric.py:172:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_epoch_metric.py:172:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_epoch_metric.py:189:23: Attribute `argmax` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_epoch_metric.py:189:23: Attribute `argmax` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:unresolved-attribute] tests/ignite/metrics/test_epoch_metric.py:208:17: Type `_T` has no attribute `device` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_fbeta.py:135:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_fbeta.py:135:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_fbeta.py:136:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_fbeta.py:136:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_fbeta.py:156:13: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_fbeta.py:156:13: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_js_divergence.py:122:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_js_divergence.py:122:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_js_divergence.py:123:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_js_divergence.py:123:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_js_divergence.py:139:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_js_divergence.py:139:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_js_divergence.py:140:26: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_js_divergence.py:140:26: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_kl_divergence.py:121:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_kl_divergence.py:121:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_kl_divergence.py:122:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_kl_divergence.py:122:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_kl_divergence.py:138:25: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_kl_divergence.py:138:25: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_kl_divergence.py:139:26: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_kl_divergence.py:139:26: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_maximum_mean_discrepancy.py:133:24: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_maximum_mean_discrepancy.py:133:24: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_maximum_mean_discrepancy.py:133:66: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_maximum_mean_discrepancy.py:133:66: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_absolute_error.py:72:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_absolute_error.py:72:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_absolute_error.py:73:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_absolute_error.py:73:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:unsupported-operator] tests/ignite/metrics/test_mean_absolute_error.py:90:36: Operator `-` is unsupported between objects of type `Unknown | int | float | list` and `Unknown | int | float | list` | |
+ error[lint:unsupported-operator] tests/ignite/metrics/test_mean_absolute_error.py:90:36: Operator `-` is unsupported between objects of type `Unknown | int | float | list[Unknown]` and `Unknown | int | float | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:48:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:48:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:48:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:52:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:52:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:52:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:56:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:56:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_mean_average_precision.py:56:40: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:208:22: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:208:22: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:209:23: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:209:23: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:211:22: Attribute `transpose` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:211:22: Attribute `transpose` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:212:23: Attribute `transpose` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mean_average_precision.py:212:23: Attribute `transpose` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:68:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:68:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:69:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:69:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:90:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:90:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:91:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_mean_pairwise_distance.py:91:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_squared_error.py:71:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_squared_error.py:71:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_squared_error.py:72:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mean_squared_error.py:72:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:unsupported-operator] tests/ignite/metrics/test_mean_squared_error.py:89:38: Operator `-` is unsupported between objects of type `Unknown | int | float | list` and `Unknown | int | float | list` | |
+ error[lint:unsupported-operator] tests/ignite/metrics/test_mean_squared_error.py:89:38: Operator `-` is unsupported between objects of type `Unknown | int | float | list[Unknown]` and `Unknown | int | float | list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_metric_group.py:22:18: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_metric_group.py:63:22: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:440:28: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:440:28: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:441:28: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:441:28: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:466:28: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:466:28: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:466:51: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:466:51: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:489:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_metrics_lambda.py:489:13: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_metrics_lambda.py:490:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_metrics_lambda.py:490:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:515:24: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:515:24: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:515:47: Attribute `view` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_metrics_lambda.py:515:47: Attribute `view` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:132:17: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:132:17: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:133:17: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:133:17: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:183:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:183:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:184:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_multilabel_confusion_matrix.py:184:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mutual_information.py:108:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mutual_information.py:108:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mutual_information.py:109:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_mutual_information.py:109:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mutual_information.py:125:46: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_mutual_information.py:125:46: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:351:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:351:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision.py:352:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision.py:352:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision.py:377:17: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision.py:377:17: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:403:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:403:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:404:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_precision.py:404:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:172:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:172:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:173:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:173:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision_recall_curve.py:218:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision_recall_curve.py:218:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision_recall_curve.py:219:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_precision_recall_curve.py:219:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:237:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:237:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:238:22: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_precision_recall_curve.py:238:22: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_psnr.py:84:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_psnr.py:84:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_psnr.py:85:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_psnr.py:85:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_psnr.py:103:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_psnr.py:103:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_psnr.py:104:16: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_psnr.py:104:16: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_psnr.py:106:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_psnr.py:106:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_psnr.py:107:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_psnr.py:107:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:354:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:354:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_recall.py:355:21: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_recall.py:355:21: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_recall.py:380:17: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_recall.py:380:17: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:406:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:406:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:407:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_recall.py:407:21: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:186:16: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:186:16: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:187:21: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:187:21: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:243:34: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:243:34: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:243:56: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_auc.py:243:56: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_roc_curve.py:149:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_roc_curve.py:149:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_roc_curve.py:150:13: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_roc_curve.py:150:13: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:65: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_roc_curve.py:171:82: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_root_mean_squared_error.py:71:20: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_root_mean_squared_error.py:71:20: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_root_mean_squared_error.py:71:68: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_root_mean_squared_error.py:71:68: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:unsupported-operator] tests/ignite/metrics/test_root_mean_squared_error.py:87:47: Operator `-` is unsupported between objects of type `Unknown | int | float | list` and `Unknown | int | float | list` | |
+ error[lint:unsupported-operator] tests/ignite/metrics/test_root_mean_squared_error.py:87:47: Operator `-` is unsupported between objects of type `Unknown | int | float | list[Unknown]` and `Unknown | int | float | list[Unknown]` | |
- error[lint:invalid-argument-type] tests/ignite/metrics/test_running_average.py:17:24: Argument to this function is incorrect: Expected `Metric | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_running_average.py:17:24: Argument to this function is incorrect: Expected `Metric | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_ssim.py:33:37: Argument to this function is incorrect: Expected `int | Sequence[int]`, found `float` | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/test_ssim.py:43:37: Argument to this function is incorrect: Expected `int | float | Sequence[int | float]`, found `tuple[Literal[-1], Literal[-1]]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_ssim.py:292:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_ssim.py:292:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- error[lint:call-non-callable] tests/ignite/metrics/test_ssim.py:293:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_ssim.py:293:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_ssim.py:308:19: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_ssim.py:308:19: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_ssim.py:334:19: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_ssim.py:334:19: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- error[lint:call-non-callable] tests/ignite/metrics/test_top_k_categorical_accuracy.py:72:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)])` is not callable on object of type `Unknown | int | float | list` | |
+ error[lint:call-non-callable] tests/ignite/metrics/test_top_k_categorical_accuracy.py:72:17: Method `__getitem__` of type `Unknown | (Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]])` is not callable on object of type `Unknown | int | float | list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_top_k_categorical_accuracy.py:73:17: Method `__getitem__` of type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] tests/ignite/metrics/test_top_k_categorical_accuracy.py:73:17: Method `__getitem__` of type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_top_k_categorical_accuracy.py:93:35: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_top_k_categorical_accuracy.py:93:35: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_top_k_categorical_accuracy.py:93:57: Attribute `cpu` on type `Unknown | int | float | list` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/ignite/metrics/test_top_k_categorical_accuracy.py:93:57: Attribute `cpu` on type `Unknown | int | float | list[Unknown]` is possibly unbound | |
+ error[lint:invalid-argument-type] tests/ignite/metrics/vision/test_object_detection_map.py:1037:27: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `tuple[Unknown, Unknown]` | |
- Found 2559 diagnostics | |
+ Found 2622 diagnostics | |
cki-lib (https://gitlab.com/cki-project/cki-lib) | |
+ error[lint:invalid-argument-type] cki_lib/config_tree.py:31:46: Argument to this function is incorrect: Expected `str`, found `@Todo(map_with_boundness: intersections with negative contributions) | list[Unknown]` | |
+ error[lint:no-matching-overload] cki_lib/footer.py:141:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] cki_lib/gitlab.py:273:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] cki_lib/inttests/remote_responses.py:242:5: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] cki_lib/owners.py:223:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-assignment] cki_lib/stomp.py:70:13: Object of type `_VT | Unknown` is not assignable to `None | str | list[str]` | |
+ error[lint:not-iterable] cki_lib/stomp.py:75:44: Object of type `list[str] | None` may not be iterable | |
+ error[lint:no-matching-overload] cki_lib/yaml.py:322:19: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_certs.py:47:46: Argument to this function is incorrect: Expected `Sequence[_Call]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:448:44: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:448:44: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:466:48: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:466:48: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:483:44: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:483:44: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:495:44: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:495:44: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:506:44: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:506:44: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_messagequeue.py:535:44: Argument to this function is incorrect: Expected `list`, found `Literal["routing"]` | |
+ error[lint:invalid-argument-type] tests/test_messagequeue.py:535:44: Argument to this function is incorrect: Expected `list[Unknown]`, found `Literal["routing"]` | |
- error[lint:invalid-argument-type] tests/test_misc.py:324:41: Argument to this function is incorrect: Expected `bool`, found `list` | |
+ error[lint:invalid-argument-type] tests/test_misc.py:324:41: Argument to this function is incorrect: Expected `bool`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/test_misc.py:327:41: Argument to this function is incorrect: Expected `bool`, found `list` | |
+ error[lint:invalid-argument-type] tests/test_misc.py:327:41: Argument to this function is incorrect: Expected `bool`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_misc.py:416:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] tests/test_misc.py:424:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] tests/test_misc.py:432:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] tests/test_misc.py:439:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_retrying.py:61:32: Argument to this function is incorrect: Expected `Sequence[_Call]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_yaml.py:63:22: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] tests/test_yaml.py:75:22: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_yaml.py:244:31: Argument to this function is incorrect: Expected `list[str] | None`, found `list[_T]` | |
- Found 189 diagnostics | |
+ Found 206 diagnostics | |
yarl (https://github.com/aio-libs/yarl) | |
- error[lint:invalid-argument-type] tests/test_pickle.py:29:20: Argument to this function is incorrect: Expected `tuple[Unknown] | tuple[None, _InternalURLCache]`, found `tuple[None, dict[Unknown, Unknown]]` | |
+ error[lint:invalid-argument-type] tests/test_pickle.py:29:20: Argument to this function is incorrect: Expected `tuple[Unknown | tuple[@Todo(Generic tuple specializations), ...]] | tuple[None, _InternalURLCache]`, found `tuple[None, dict[Unknown, Unknown]]` | |
+ error[lint:no-matching-overload] tests/test_quoting.py:16:6: No overload of function `fixture` matches arguments | |
+ error[lint:no-matching-overload] tests/test_quoting.py:20:6: No overload of function `fixture` matches arguments | |
+ error[lint:no-matching-overload] tests/test_quoting.py:30:6: No overload of function `fixture` matches arguments | |
+ error[lint:no-matching-overload] tests/test_quoting.py:34:6: No overload of function `fixture` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_quoting.py:226:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["input"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_quoting.py:350:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["input"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_update_query.py:132:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["query"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_update_query.py:189:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_update_query.py:206:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["exc_type"]]` | |
+ error[lint:invalid-argument-type] tests/test_update_query.py:223:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_update_query.py:331:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["query"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_url.py:211:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["input"], Literal["result"]]` | |
+ error[lint:invalid-argument-type] tests/test_url.py:1275:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["original_url"], Literal["keep_query"], Literal["keep_fragment"], Literal["expected_url"]]` | |
+ error[lint:invalid-argument-type] tests/test_url.py:1395:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["original_url"], Literal["keep_query"], Literal["keep_fragment"], Literal["expected_url"]]` | |
+ error[lint:invalid-argument-type] tests/test_url.py:1550:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["original_url"], Literal["keep_query"], Literal["keep_fragment"], Literal["expected_url"]]` | |
+ error[lint:invalid-argument-type] tests/test_url.py:2417:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["host"], Literal["is_authority"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_build.py:56:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["port"], Literal["exc"], Literal["match"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_build.py:123:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["host"], Literal["is_authority"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_parsing.py:604:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["url"], Literal["hostname"], Literal["hostname_without_brackets"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_query.py:179:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["original_query_string"], Literal["keys_to_drop"], Literal["expected_query_string"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_query.py:202:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["original_query_string"], Literal["keys_to_drop"]]` | |
+ error[lint:invalid-argument-type] tests/test_url_update_netloc.py:190:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["host"], Literal["is_authority"]]` | |
+ error[lint:invalid-argument-type] yarl/_path.py:41:54: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str] | @Todo(map_with_boundness: intersections with negative contributions)` | |
+ error[lint:invalid-argument-type] yarl/_url.py:1041:49: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
- Found 171 diagnostics | |
+ Found 195 diagnostics | |
poetry (https://github.com/python-poetry/poetry) | |
- error[lint:invalid-return-type] src/poetry/config/config.py:269:16: Return type does not match returned value: Expected `Mapping[Unknown, Mapping[str, str | @Todo(specialized non-generic class)]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] src/poetry/config/config.py:269:16: Return type does not match returned value: Expected `Mapping[Unknown, Mapping[str, Sequence[str]]]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-assignment] src/poetry/config/config.py:314:9: Object of type `dict[Unknown, Unknown]` is not assignable to `Mapping[Unknown, Mapping[str, str | @Todo(specialized non-generic class)]]` | |
+ error[lint:invalid-assignment] src/poetry/config/config.py:314:9: Object of type `dict[Unknown, Unknown]` is not assignable to `Mapping[Unknown, Mapping[str, Sequence[str]]]` | |
+ error[lint:unresolved-attribute] src/poetry/console/commands/source/add.py:45:27: Type `_EnumMemberT` has no attribute `name` | |
+ warning[lint:possibly-unbound-attribute] src/poetry/factory.py:145:33: Attribute `upper` on type `Unknown | None` is possibly unbound | |
+ error[lint:invalid-return-type] src/poetry/inspection/lazy_wheel.py:153:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[int, int]]` | |
+ error[lint:invalid-return-type] src/poetry/inspection/lazy_wheel.py:446:61: Function can implicitly return `None`, which is not assignable to return type `Iterator[bytes]` | |
+ warning[lint:redundant-cast] src/poetry/installation/installer.py:362:23: Value is already of type `Unknown` | |
+ warning[lint:redundant-cast] src/poetry/packages/locker.py:489:30: Value is already of type `Unknown` | |
+ warning[lint:redundant-cast] src/poetry/packages/locker.py:496:30: Value is already of type `Unknown` | |
+ warning[lint:redundant-cast] src/poetry/packages/locker.py:500:30: Value is already of type `Unknown` | |
+ warning[lint:redundant-cast] src/poetry/packages/locker.py:504:30: Value is already of type `Unknown` | |
+ error[lint:invalid-return-type] src/poetry/publishing/uploader.py:65:16: Return type does not match returned value: Expected `list[Path]`, found `list[SupportsRichComparisonT]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/provider.py:596:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/provider.py:596:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[Unknown]]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/provider.py:611:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/provider.py:611:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[Unknown]]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/provider.py:890:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/provider.py:890:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown, list[Unknown]]` | |
+ error[lint:invalid-return-type] src/poetry/puzzle/solver.py:228:16: Return type does not match returned value: Expected `Sequence[@Todo(Support for `typing.Self`)]`, found `list[Unknown]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/solver.py:240:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/solver.py:240:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[Unknown | tuple[@Todo(Generic tuple specializations), ...], list[PackageNode]]` | |
+ error[lint:invalid-argument-type] src/poetry/puzzle/solver.py:245:23: Argument to this function is incorrect: Expected `dict[tuple[@Todo(Generic tuple specializations), ...], list[PackageNode]]`, found `dict[Unknown | tuple[@Todo(Generic tuple specializations), ...], list[PackageNode]]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/solver.py:248:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/solver.py:248:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[PackageNode]]` | |
+ error[lint:invalid-return-type] src/poetry/puzzle/solver.py:345:16: Return type does not match returned value: Expected `Sequence[PackageNode]`, found `list[Unknown]` | |
- error[lint:invalid-assignment] src/poetry/puzzle/solver.py:384:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] src/poetry/puzzle/solver.py:384:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, list[Unknown]]` | |
+ error[lint:invalid-argument-type] src/poetry/repositories/legacy_repository.py:127:17: Argument to this function is incorrect: Expected `Sequence[Mapping[str, str]] | None`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] src/poetry/repositories/link_sources/base.py:51:49: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:invalid-return-type] src/poetry/repositories/link_sources/base.py:63:24: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:invalid-return-type] src/poetry/repositories/link_sources/base.py:101:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:no-matching-overload] src/poetry/utils/authenticator.py:426:67: No overload of function `commonprefix` matches arguments | |
+ error[lint:no-matching-overload] src/poetry/utils/authenticator.py:448:35: No overload of function `commonprefix` matches arguments | |
+ error[lint:invalid-return-type] src/poetry/utils/env/site_packages.py:99:10: Function can implicitly return `None`, which is not assignable to return type `Iterable[Unknown]` | |
+ error[lint:invalid-argument-type] tests/config/test_config.py:41:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["name"], Literal["value"]]` | |
+ error[lint:invalid-argument-type] tests/config/test_config.py:82:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["name"], Literal["env_var"], Literal["env_value"], Literal["value"]]` | |
+ error[lint:invalid-argument-type] tests/config/test_config.py:115:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["path_config"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/config/test_config.py:137:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["invalid"]]` | |
+ error[lint:invalid-argument-type] tests/config/test_config_source.py:14:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/config/test_source.py:47:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["priority"], Literal["expected_priority"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/python/test_python_list.py:106:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["version"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/python/test_python_list.py:126:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["implementation"], Literal["expected"]]` | |
- error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:111:27: Argument to this function is incorrect: Expected `str | Mapping[str, str | @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:111:27: Argument to this function is incorrect: Expected `str | Mapping[str, str | list[str]]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:141:48: Argument to this function is incorrect: Expected `str | Mapping[str, str | @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:141:48: Argument to this function is incorrect: Expected `str | Mapping[str, str | list[str]]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:187:9: Argument to this function is incorrect: Expected `str | Mapping[str, str | @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/self/test_add_plugins.py:187:9: Argument to this function is incorrect: Expected `str | Mapping[str, str | list[str]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_add.py:821:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["existing_extras"], Literal["expected_extras"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_add.py:1608:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["locked"], Literal["expected_docker"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_build.py:250:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_build.py:264:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_check.py:80:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_check.py:227:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["options"], Literal["expected"], Literal["expected_status"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:217:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:261:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["setting"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:291:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["setting"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:484:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["result"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:543:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["setting"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:550:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_config.py:612:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_init.py:1103:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_install.py:100:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["options"], Literal["groups"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_install.py:350:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["options"], Literal["valid_groups"], Literal["should_raise"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_new.py:178:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["fmt"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_new.py:198:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_show.py:173:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["options"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_show.py:914:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["project_directory"], Literal["required_fixtures"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_show.py:2365:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["project_directory"], Literal["required_fixtures"]]` | |
+ error[lint:invalid-argument-type] tests/console/commands/test_update.py:62:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["command"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/logging/test_io_formatter.py:19:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["record_name"], Literal["record_pathname"], Literal["record_msg"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/logging/test_io_formatter.py:41:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["record_name"], Literal["record_pathname"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/logging/test_io_formatter.py:60:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["path"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_application.py:194:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["tokens"], Literal["result"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_application_command_not_found.py:22:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["command"], Literal["suggested"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_application_global_options.py:243:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["parameter"], Literal["check"], Literal["result"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_application_removed_commands.py:34:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["command"], Literal["message"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exceptions_console_message.py:9:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["text"], Literal["expected_stripped"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exceptions_console_message.py:23:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["text"], Literal["tag"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exceptions_console_message.py:37:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["text"], Literal["indent"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exceptions_console_message.py:52:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["text"], Literal["title"], Literal["indent"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exections_poetry_runtime_error.py:12:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["reason"], Literal["messages"], Literal["exit_code"], Literal["expected_reason"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exections_poetry_runtime_error.py:39:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["debug"], Literal["strip"], Literal["indent"], Literal["messages"], Literal["expected_text"]]` | |
+ error[lint:invalid-argument-type] tests/console/test_exections_poetry_runtime_error.py:94:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["reason"], Literal["exception"], Literal["info"], Literal["expected_message_texts"]]` | |
+ error[lint:no-matching-overload] tests/inspection/test_info.py:156:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] tests/inspection/test_info.py:160:16: No overload of bound method `__init__` matches arguments | |
+ error[lint:no-matching-overload] tests/inspection/test_info.py:217:14: No overload of bound method `__init__` matches arguments | |
+ error[lint:invalid-argument-type] tests/inspection/test_lazy_wheel.py:330:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["negative_offset_failure"], Literal["expected_requests"]]` | |
+ error[lint:call-non-callable] tests/installation/test_chooser.py:60:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/installation/test_chooser.py:77:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["policy"], Literal["filename"]]` | |
+ error[lint:invalid-argument-type] tests/installation/test_chooser.py:100:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["policy"], Literal["filename"]]` | |
+ error[lint:invalid-argument-type] tests/installation/test_chooser.py:123:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["no_binary"], Literal["only_binary"], Literal["filename"]]` | |
+ error[lint:invalid-argument-type] tests/installation/test_executor.py:954:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["is_sdist_cached"], Literal["is_wheel_cached"], Literal["expect_artifact_building"], Literal["expect_artifact_download"]]` | |
+ error[lint:invalid-argument-type] tests/installation/test_executor.py:1331:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["max_workers"], Literal["cpu_count"], Literal["side_effect"], Literal["expected_workers"]]` | |
+ error[lint:invalid-argument-type] tests/installation/test_installer.py:400:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["groups"], Literal["installs"], Literal["updates"], Literal["removals"], Literal["with_packages_installed"]]` | |
+ error[lint:invalid-argument-type] tests/integration/test_utils_vcs_git.py:239:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["revision"], Literal["expected_revision"]]` | |
+ error[lint:call-non-callable] tests/masonry/builders/test_editable_builder.py:291:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/mixology/test_incompatibility.py:20:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["dependency1"], Literal["dependency2"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/packages/test_locker.py:467:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["groups"], Literal["marker"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/packages/test_locker.py:1438:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["local_config"], Literal["fresh"]]` | |
+ error[lint:invalid-argument-type] tests/plugins/test_plugin_manager.py:553:20: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/plugins/test_plugin_manager.py:553:70: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver.py:562:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["enabled_extras"], Literal["expected_packages"]]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver.py:3507:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["lib_versions"], Literal["other_versions"]]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver.py:3586:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["lib_versions"], Literal["other_versions"]]` | |
+ error[lint:invalid-parameter-default] tests/puzzle/test_solver_internals.py:33:5: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver_internals.py:205:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver_internals.py:207:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver_internals.py:237:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_solver_internals.py:437:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["python_constraint"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_transaction.py:252:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["groups"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_transaction.py:314:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["python_version"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/puzzle/test_transaction.py:354:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["python_version"], Literal["sys_platform"], Literal["groups"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/repositories/link_sources/test_html.py:95:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata"], Literal["expected_has_metadata"], Literal["expected_metadata_hashes"]]` | |
+ error[lint:invalid-argument-type] tests/repositories/link_sources/test_json.py:9:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["metadata"], Literal["expected_has_metadata"], Literal["expected_metadata_hashes"]]` | |
+ error[lint:call-non-callable] tests/repositories/test_legacy_repository.py:163:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/repositories/test_legacy_repository.py:244:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_legacy_repository.py:262:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_legacy_repository.py:599:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["repositories"]]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_pypi_repository.py:53:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_pypi_repository.py:65:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] tests/repositories/test_pypi_repository.py:248:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/repositories/test_pypi_repository.py:371:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["query"], Literal["count"]]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository.py:28:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["allow_prereleases"], Literal["constraint"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository.py:54:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository.py:107:31: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:151:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:153:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:167:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:168:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:186:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:187:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:208:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:220:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:221:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:238:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:239:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:257:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:258:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/repositories/test_repository_pool.py:277:33: Argument to this function is incorrect: Expected `Sequence[Unknown] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_factory.py:155:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["project"]]` | |
+ error[lint:invalid-argument-type] tests/test_factory.py:453:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["source"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/utils/env/python/test_manager.py:52:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["constraint"], Literal["implementation"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/utils/env/python/test_manager.py:105:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["name"], Literal["expected_minor"]]` | |
+ error[lint:call-non-callable] tests/utils/env/test_env.py:324:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/utils/env/test_env.py:338:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/utils/env/test_env.py:342:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["flags"], Literal["packages"]]` | |
+ error[lint:invalid-argument-type] tests/utils/env/test_env_manager.py:93:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["section"], Literal["version"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_authenticator.py:318:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/utils/test_authenticator.py:680:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["ca_cert"], Literal["client_cert"], Literal["result"]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_cache.py:228:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["link"], Literal["strict"], Literal["available_packages"]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_cache.py:274:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["link"], Literal["cached"], Literal["strict"]]` | |
+ error[lint:call-non-callable] tests/utils/test_cache.py:360:17: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/utils/test_dependency_specification.py:24:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["requirement"], Literal["expected_variants"]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_extras.py:29:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/utils/test_extras.py:73:43: Argument to this function is incorrect: Expected `Mapping[Unknown, @Todo(specialized non-generic class)]`, found `dict[Unknown, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-argument-type] tests/utils/test_extras.py:73:43: Argument to this function is incorrect: Expected `Mapping[Unknown, Iterable[Unknown]]`, found `dict[Unknown, list[Unknown]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_isolated_build.py:93:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["requirements"], Literal["exception"]]` | |
+ error[lint:call-non-callable] tests/utils/test_isolated_build.py:130:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/utils/test_password_manager.py:41:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["username"], Literal["password"], Literal["is_valid"]]` | |
+ error[lint:invalid-argument-type] tests/utils/test_password_manager.py:136:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["username"], Literal["password"], Literal["is_valid"]]` | |
+ error[lint:call-non-callable] tests/utils/test_password_manager.py:383:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] tests/utils/test_patterns.py:9:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/utils/test_patterns.py:58:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/utils/test_threading.py:100:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/utils/test_threading.py:120:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- Found 1140 diagnostics | |
+ Found 1284 diagnostics | |
tornado (https://github.com/tornadoweb/tornado) | |
+ error[lint:unsupported-operator] tornado/autoreload.py:231:16: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[Unknown] | list[str]` | |
+ error[lint:unsupported-operator] tornado/autoreload.py:234:26: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[Unknown] | list[str] | Unknown` | |
+ error[lint:unsupported-operator] tornado/autoreload.py:237:34: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[Unknown] | list[str] | Unknown` | |
+ error[lint:unsupported-operator] tornado/autoreload.py:299:20: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:no-matching-overload] tornado/concurrent.py:177:9: No overload of function `future_add_done_callback` matches arguments | |
- warning[lint:unused-ignore-comment] tornado/gen.py:749:57: Unused blanket `type: ignore` directive | |
- error[lint:unresolved-attribute] tornado/gen.py:854:5: Type `Awaitable` has no attribute `add_done_callback` | |
+ error[lint:no-matching-overload] tornado/ioloop.py:713:13: No overload of function `future_add_done_callback` matches arguments | |
- error[lint:unresolved-attribute] tornado/platform/twisted.py:51:6: Type `def convert_yielded(yielded: @Todo(Inference of subscript on special form)) -> Unknown | Future` has no attribute `register` | |
+ error[lint:unresolved-attribute] tornado/platform/twisted.py:51:6: Type `def convert_yielded(yielded: @Todo(Inference of subscript on special form)) -> Unknown | Future[Unknown]` has no attribute `register` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:125:17: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:136:17: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:188:21: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:198:17: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:204:17: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:228:17: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] tornado/test/gen_test.py:1022:34: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] tornado/test/gen_test.py:1043:38: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | Mapping[Any, @Todo(Inference of subscript on special form)]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] tornado/test/process_test.py:237:59: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] tornado/test/routing_test.py:254:13: Argument to this function is incorrect: Expected `Sequence[Rule | list[Unknown] | tuple[str | Matcher, Any] | tuple[str | Matcher, Any, dict[Unknown, Unknown]] | tuple[str | Matcher, Any, dict[Unknown, Unknown], str]] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tornado/test/runtests.py:60:58: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
- warning[lint:unused-ignore-comment] tornado/test/simple_httpclient_test.py:617:55: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] tornado/test/simple_httpclient_test.py:619:55: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] tornado/test/simple_httpclient_test.py:625:55: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] tornado/test/simple_httpclient_test.py:627:55: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] tornado/test/simple_httpclient_test.py:629:55: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] tornado/test/wsgi_test.py:27:13: Argument to this function is incorrect: Expected `Sequence[Rule | list[Unknown] | tuple[str | Matcher, Any] | tuple[str | Matcher, Any, dict[Unknown, Unknown]] | tuple[str | Matcher, Any, dict[Unknown, Unknown], str]] | None`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] tornado/testing.py:873:58: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] tornado/testing.py:875:42: Argument to this function is incorrect: Expected `list[str] | None`, found `list[_T]` | |
+ error[lint:invalid-argument-type] tornado/util.py:130:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] tornado/util.py:397:13: Object of type `list[Unknown]` is not assignable to `Sequence[Any]` | |
- error[lint:invalid-return-type] tornado/wsgi.py:153:20: Return type does not match returned value: Expected `(bytes, /) -> Any`, found `Unknown | (bound method list.append(object: _T, /) -> None)` | |
+ warning[lint:possibly-unbound-attribute] tornado/wsgi.py:244:31: Attribute `replace` on type `Unknown | _KT` is possibly unbound | |
- Found 552 diagnostics | |
+ Found 561 diagnostics | |
twine (https://github.com/pypa/twine) | |
+ error[lint:no-matching-overload] twine/cli.py:133:5: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] twine/commands/check.py:192:19: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] twine/commands/register.py:83:19: No overload of bound method `parse_args` matches arguments | |
+ error[lint:no-matching-overload] twine/commands/upload.py:254:19: No overload of bound method `parse_args` matches arguments | |
- Found 25 diagnostics | |
+ Found 29 diagnostics | |
mkdocs (https://github.com/mkdocs/mkdocs) | |
+ error[lint:invalid-argument-type] mkdocs/__main__.py:224:53: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-return-type] mkdocs/config/base.py:278:12: Return type does not match returned value: Expected `Sequence[@Todo(Inference of subscript on special form)]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-return-type] mkdocs/config/config_options.py:1034:16: Return type does not match returned value: Expected `list[str]`, found `list[T]` | |
+ error[lint:no-matching-overload] mkdocs/structure/files.py:552:9: No overload of bound method `sort` matches arguments | |
+ error[lint:no-matching-overload] mkdocs/structure/files.py:553:9: No overload of bound method `sort` matches arguments | |
+ error[lint:invalid-argument-type] mkdocs/structure/nav.py:145:34: Argument to this function is incorrect: Expected `list[Page]`, found `list[T]` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:166:58: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:168:47: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:170:13: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:176:41: Type `T` has no attribute `url` | |
+ error[lint:unresolved-attribute] mkdocs/structure/nav.py:182:36: Type `T` has no attribute `url` | |
+ error[lint:invalid-argument-type] mkdocs/structure/nav.py:185:30: Argument to this function is incorrect: Expected `list[Page]`, found `list[T]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:401:38: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:413:59: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:436:24: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:453:24: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:469:38: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:486:46: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/build_tests.py:510:46: Argument to this function is incorrect: Expected `Sequence[File]`, found `Files` | |
+ error[lint:invalid-argument-type] mkdocs/tests/config/config_options_legacy_tests.py:182:22: Argument to this function is incorrect: Expected `Collection[Unknown]`, found `Literal[5]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:587:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:587:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:612:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:612:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:636:9: Actual type `Unknown` is not the same as asserted type `list | None` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:636:9: Actual type `Unknown` is not the same as asserted type `list[Unknown] | None` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:650:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:650:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:694:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:694:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:712:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:712:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1017:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1017:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1043:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1043:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1462:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1462:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1481:9: Actual type `Unknown` is not the same as asserted type `list | None` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1481:9: Actual type `Unknown` is not the same as asserted type `list[Unknown] | None` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1513:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1513:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1542:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1542:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1669:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:1669:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
- error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:2409:9: Actual type `Unknown` is not the same as asserted type `list` | |
+ error[lint:type-assertion-failure] mkdocs/tests/config/config_options_tests.py:2409:9: Actual type `Unknown` is not the same as asserted type `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/localization_tests.py:17:60: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/localization_tests.py:39:67: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/localization_tests.py:52:64: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/localization_tests.py:72:64: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:211:78: Argument to this function is incorrect: Expected `Files`, found `list` | |
+ error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:211:78: Argument to this function is incorrect: Expected `Files`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:229:78: Argument to this function is incorrect: Expected `Files`, found `list` | |
+ error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:229:78: Argument to this function is incorrect: Expected `Files`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:238:44: Argument to this function is incorrect: Expected `Navigation`, found `list` | |
+ error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:238:44: Argument to this function is incorrect: Expected `Navigation`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:238:69: Argument to this function is incorrect: Expected `Files`, found `list` | |
+ error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:238:69: Argument to this function is incorrect: Expected `Files`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:257:80: Argument to this function is incorrect: Expected `Files`, found `list` | |
+ error[lint:invalid-argument-type] mkdocs/tests/plugin_tests.py:257:80: Argument to this function is incorrect: Expected `Files`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/utils/utils_tests.py:192:22: Argument to this function is incorrect: Expected `MutableSequence[Literal[5]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/utils/utils_tests.py:194:22: Argument to this function is incorrect: Expected `MutableSequence[Literal[-1]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/utils/utils_tests.py:196:22: Argument to this function is incorrect: Expected `MutableSequence[Literal[2]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/utils/utils_tests.py:198:22: Argument to this function is incorrect: Expected `MutableSequence[Literal[4]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mkdocs/tests/utils/utils_tests.py:203:22: Argument to this function is incorrect: Expected `MutableSequence[tuple[Literal[1], Literal["a"]]]`, found `list[Unknown]` | |
- Found 347 diagnostics | |
+ Found 381 diagnostics | |
comtypes (https://github.com/enthought/comtypes) | |
+ error[lint:invalid-argument-type] comtypes/_memberspec.py:86:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] comtypes/_post_coinit/instancemethod.py:3:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-return-type] comtypes/_vtbl.py:349:12: Return type does not match returned value: Expected `tuple[Sequence[GUID], Structure]`, found `tuple[list[Unknown], Structure]` | |
+ error[lint:invalid-return-type] comtypes/_vtbl.py:352:45: Function can implicitly return `None`, which is not assignable to return type `Iterator[type[IUnknown]]` | |
+ error[lint:invalid-return-type] comtypes/_vtbl.py:389:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[tuple[dispid, int], (...) -> Any]]` | |
+ error[lint:invalid-return-type] comtypes/_vtbl.py:411:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[tuple[dispid, int], (...) -> Any]]` | |
+ error[lint:invalid-assignment] comtypes/automation.py:729:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/client/_code_cache.py:122:13: Object of type `list[Unknown]` is not assignable to attribute `__path__` of type `MutableSequence[str]` | |
+ error[lint:invalid-argument-type] comtypes/client/_generate.py:231:50: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] comtypes/server/register.py:285:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[@Todo(Inference of subscript on special form)]` | |
+ error[lint:invalid-return-type] comtypes/server/register.py:306:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[@Todo(Inference of subscript on special form)]` | |
+ error[lint:invalid-argument-type] comtypes/server/register.py:439:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] comtypes/server/register.py:439:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] comtypes/server/register.py:439:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] comtypes/server/register.py:472:25: Argument to this function is incorrect: Expected `Sequence[type[COMObject]]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-return-type] comtypes/server/w_getopt.py:48:12: Return type does not match returned value: Expected `tuple[Sequence[tuple[str, str]], Sequence[str]]`, found `tuple[list[Unknown], list[Unknown]]` | |
+ error[lint:invalid-argument-type] comtypes/test/__init__.py:93:60: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] comtypes/test/test_findgendir.py:23:9: Object of type `list[Unknown]` is not assignable to attribute `__path__` of type `MutableSequence[str]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_typeannotator.py:105:28: Argument to this function is incorrect: Expected `Sequence[ComMethod]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:37: Argument to this function is incorrect: Expected `str`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:37: Argument to this function is incorrect: Expected `str`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:9:37: Argument to this function is incorrect: Expected `str`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
- error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:17:37: Argument to this function is incorrect: Expected `str`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:24:22: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
- error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:24:59: Argument to this function is incorrect: Expected `str`, found `list` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:24:59: Argument to this function is incorrect: Expected `str`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:29:22: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[LiteralString]` | |
- error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:29:38: Argument to this function is incorrect: Expected `str`, found `list` | |
+ error[lint:invalid-argument-type] comtypes/test/test_w_getopt.py:29:38: Argument to this function is incorrect: Expected `str`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] comtypes/test/test_win32com_interop.py:28:5: Object of type `tuple[@Todo(unsupported nested subscript in type[X])]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] comtypes/test/test_win32com_interop.py:33:5: Object of type `tuple[Literal[py_object], @Todo(unsupported nested subscript in type[X])]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] comtypes/test/test_win32com_interop.py:45:5: Object of type `tuple[@Todo(unsupported nested subscript in type[X]), Literal[c_void_p], Literal[c_long]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-argument-type] comtypes/tools/codegenerator/codegenerator.py:556:52: Argument to this function is incorrect: Expected `Sequence[tuple[@Todo(Inference of subscript on special form), int]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] comtypes/tools/codegenerator/codegenerator.py:556:52: Argument to this function is incorrect: Expected `Sequence[tuple[@Todo(Inference of subscript on special form), int]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] comtypes/tools/codegenerator/codegenerator.py:556:52: Argument to this function is incorrect: Expected `Sequence[tuple[@Todo(Inference of subscript on special form), int]]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] comtypes/tools/codegenerator/typeannotator.py:43:16: Return type does not match returned value: Expected `Sequence[tuple[Any, str, Any | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] comtypes/tools/typedesc.py:253:12: Return type does not match returned value: Expected `tuple[Sequence[@Todo(Inference of subscript on special form)], Sequence[@Todo(Inference of subscript on special form)]]`, found `tuple[list[Unknown], list[Unknown]]` | |
- warning[lint:unused-ignore-comment] comtypes/typeinfo.py:286:50: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1211:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1230:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1236:1: Object of type `tuple[Literal["_"]]` is not assignable to attribute `_anonymous_` of type `Sequence[str]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1237:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1243:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1248:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1278:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1315:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1322:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1327:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1335:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1345:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1352:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1368:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
+ error[lint:invalid-assignment] comtypes/typeinfo.py:1388:1: Object of type `list[Unknown]` is not assignable to attribute `_fields_` of type `Sequence[tuple[str, @Todo(unsupported type[X] special form)] | tuple[str, @Todo(unsupported type[X] special form), int]]` | |
- Found 698 diagnostics | |
+ Found 750 diagnostics | |
jinja (https://github.com/pallets/jinja) | |
+ error[lint:invalid-argument-type] examples/basic/translate.py:3:19: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] src/jinja2/async_utils.py:70:12: Return type does not match returned value: Expected `V`, found `Awaitable[V] | V` | |
+ warning[lint:possibly-unbound-attribute] src/jinja2/async_utils.py:91:16: Attribute `__aiter__` on type `AsyncIterable[V] | Iterable[V]` is possibly unbound | |
+ error[lint:no-matching-overload] src/jinja2/async_utils.py:93:41: No overload of function `iter` matches arguments | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:855:16: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:856:36: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:857:25: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:861:16: Type `_NodeBound` has no attribute `importname` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:862:23: Type `_NodeBound` has no attribute `importname` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1194:20: Type `_NodeBound` has no attribute `scoped` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1245:16: Type `_NodeBound` has no attribute `ctx` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1245:40: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1592:16: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1597:27: Type `_NodeBound` has no attribute `name` | |
+ error[lint:unresolved-attribute] src/jinja2/compiler.py:1598:37: Type `_NodeBound` has no attribute `name` | |
+ error[lint:invalid-parameter-default] src/jinja2/environment.py:310:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str | @Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-argument-type] src/jinja2/environment.py:377:54: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] src/jinja2/environment.py:530:9: Object of type `list[Unknown]` is not assignable to `Sequence[Any] | None` | |
+ error[lint:unresolved-attribute] src/jinja2/environment.py:540:13: Type `Sequence[Any] | None` has no attribute `insert` | |
+ error[lint:unresolved-attribute] src/jinja2/environment.py:548:13: Type `Sequence[Any] | None` has no attribute `insert` | |
+ error[lint:unresolved-attribute] src/jinja2/environment.py:550:13: Type `Sequence[Any] | None` has no attribute `insert` | |
+ error[lint:invalid-return-type] src/jinja2/environment.py:631:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[int, str, str]]` | |
+ error[lint:unsupported-operator] src/jinja2/environment.py:931:37: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Collection[str] | None` | |
- error[lint:unsupported-operator] src/jinja2/environment.py:931:37: Operator `in` is not supported for types `@Todo(specialized non-generic class)` and `None`, in comparing `@Todo(specialized non-generic class)` with `@Todo(specialized non-generic class) | None` | |
- warning[lint:unused-ignore-comment] src/jinja2/environment.py:1072:41: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-parameter-default] src/jinja2/environment.py:1184:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str | @Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-parameter-default] src/jinja2/exceptions.py:67:9: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str | Undefined]` | |
+ error[lint:invalid-parameter-default] src/jinja2/ext.py:331:9: Default value of type `tuple[Literal["_"], Literal["gettext"], Literal["ngettext"], Literal["pgettext"], Literal["npgettext"]]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-parameter-default] src/jinja2/ext.py:641:5: Default value of type `tuple[Literal["_"], Literal["gettext"], Literal["ngettext"], Literal["pgettext"], Literal["npgettext"]]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:684:28: Type `_NodeBound` has no attribute `node` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:685:16: Type `_NodeBound` has no attribute `node` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:691:20: Type `_NodeBound` has no attribute `args` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:697:18: Type `_NodeBound` has no attribute `kwargs` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:699:12: Type `_NodeBound` has no attribute `dyn_args` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:701:12: Type `_NodeBound` has no attribute `dyn_kwargs` | |
+ error[lint:unresolved-attribute] src/jinja2/ext.py:715:28: Type `_NodeBound` has no attribute `node` | |
+ error[lint:invalid-argument-type] src/jinja2/ext.py:825:9: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] src/jinja2/ext.py:845:29: Argument to this function is incorrect: Expected `Sequence[tuple[int, str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] src/jinja2/filters.py:102:9: Object of type `list[str]` is not assignable to `Sequence[str | int | None]` | |
+ error[lint:invalid-return-type] src/jinja2/filters.py:224:61: Function can implicitly return `None`, which is not assignable to return type `Iterator[tuple[K, V]]` | |
+ error[lint:invalid-return-type] src/jinja2/filters.py:246:9: Return type does not match returned value: Expected `Iterator[tuple[K, V]]`, found `None` | |
- warning[lint:unused-ignore-comment] src/jinja2/filters.py:1336:34: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/jinja2/filters.py:1401:33: Unused blanket `type: ignore` directive | |
- error[lint:invalid-argument-type] src/jinja2/lexer.py:667:40: Argument to this function is incorrect: Expected `str`, found `@Todo(specialized non-generic class) | int` | |
+ error[lint:invalid-argument-type] src/jinja2/lexer.py:667:40: Argument to this function is incorrect: Expected `str`, found `str | Unknown | int` | |
+ error[lint:invalid-assignment] src/jinja2/lexer.py:740:29: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] src/jinja2/lexer.py:756:37: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] src/jinja2/loaders.py:188:13: Object of type `list[Unknown]` is not assignable to `str | PathLike[str] | Sequence[str | PathLike[str]]` | |
+ error[lint:no-matching-overload] src/jinja2/loaders.py:190:28: No overload of function `fspath` matches arguments | |
+ error[lint:not-iterable] src/jinja2/loaders.py:190:50: Object of type `PathLike[str] | Sequence[str | PathLike[str]] | str` may not be iterable | |
- warning[lint:unused-ignore-comment] src/jinja2/loaders.py:333:67: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/jinja2/loaders.py:341:30: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `list[str] | None` | |
+ error[lint:invalid-assignment] src/jinja2/loaders.py:642:13: Object of type `list[Unknown]` is not assignable to `str | PathLike[str] | Sequence[str | PathLike[str]]` | |
+ error[lint:no-matching-overload] src/jinja2/loaders.py:644:25: No overload of function `fspath` matches arguments | |
+ error[lint:not-iterable] src/jinja2/loaders.py:644:47: Object of type `PathLike[str] | Sequence[str | PathLike[str]] | str` may not be iterable | |
+ error[lint:invalid-argument-type] src/jinja2/loaders.py:677:54: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] src/jinja2/meta.py:80:47: Unused blanket `type: ignore` directive | |
- error[lint:invalid-return-type] src/jinja2/parser.py:167:34: Function can implicitly return `None`, which is not assignable to return type `Node | list` | |
+ error[lint:invalid-return-type] src/jinja2/parser.py:167:34: Function can implicitly return `None`, which is not assignable to return type `Node | list[Unknown]` | |
+ error[lint:invalid-return-type] src/jinja2/runtime.py:898:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[Any]` | |
+ error[lint:invalid-assignment] src/jinja2/utils.py:33:1: Object of type `set[Unknown]` is not assignable to `MutableSet[CodeType]` | |
+ error[lint:invalid-argument-type] src/jinja2/utils.py:158:55: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/conftest.py:54:33: Argument to this function is incorrect: Expected `Sequence[BaseLoader]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_debug.py:86:17: Argument to this function is incorrect: Expected `Sequence[BaseLoader]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:120:40: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:131:32: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:145:49: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:226:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:247:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:258:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:263:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:268:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:278:32: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:285:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:290:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:303:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:309:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:397:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["gettext"], Literal["ngettext"], Literal["_"]]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:397:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:414:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["gettext"], Literal["ngettext"], Literal["_"]]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:414:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:432:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["gettext"], Literal["ngettext"], Literal["_"]]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:432:73: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:451:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["gettext"], Literal["ngettext"], Literal["_"]]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:451:65: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:467:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["pgettext"], Literal["npgettext"], Literal["_"]]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:467:75: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:507:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:550:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ext.py:728:27: Argument to this function is incorrect: Expected `Sequence[str | @Todo(unsupported type[X] special form)]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_loader.py:143:13: Argument to this function is incorrect: Expected `str | PathLike[str] | Sequence[str | PathLike[str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_loader.py:283:13: Argument to this function is incorrect: Expected `Sequence[BaseLoader]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_loader.py:316:43: Argument to this function is incorrect: Expected `str | PathLike[str] | Sequence[str | PathLike[str]]`, found `list[Unknown]` | |
- Found 385 diagnostics | |
+ Found 462 diagnostics | |
Expression (https://github.com/cognitedata/Expression) | |
- error[lint:unsupported-operator] expression/collections/array.py:40:10: Operator `|` is unsupported between objects of type `GenericAlias` and `Literal[MutableSequence]` | |
+ error[lint:unsupported-operator] expression/collections/array.py:40:10: Operator `|` is unsupported between objects of type `Literal[list[_TSourceSum]]` and `Literal[MutableSequence[_TSourceSum]]` | |
+ error[lint:invalid-return-type] expression/collections/array.py:308:16: Return type does not match returned value: Expected `TypedArray[tuple[int, _TSource]]`, found `TypedArray[_TSource]` | |
+ error[lint:invalid-return-type] expression/collections/block.py:222:16: Return type does not match returned value: Expected `Block[tuple[int, _TSource]]`, found `Block[_TSource]` | |
+ error[lint:invalid-return-type] expression/collections/block.py:501:16: Return type does not match returned value: Expected `Block[tuple[_TSource, _TResult]]`, found `Block[_TSource]` | |
- warning[lint:unused-ignore-comment] expression/collections/block.py:547:77: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] expression/collections/map.py:59:40: Argument to this function is incorrect: Expected `(Option[Value], /) -> Option[Value]`, found `(Option[_Value], /) -> Option[_Value]` | |
+ error[lint:invalid-return-type] expression/collections/map.py:143:16: Return type does not match returned value: Expected `Block[tuple[_Key, _Value]]`, found `Block[tuple[Key, Value]]` | |
+ error[lint:invalid-argument-type] expression/collections/map.py:155:26: Argument to this function is incorrect: Expected `_Value`, found `Value` | |
+ error[lint:invalid-return-type] expression/collections/map.py:161:16: Return type does not match returned value: Expected `Option[_Value]`, found `Option[Value]` | |
+ error[lint:invalid-return-type] expression/collections/map.py:164:16: Return type does not match returned value: Expected `Option[_Result]`, found `Option[Result]` | |
+ error[lint:invalid-argument-type] expression/collections/map.py:164:33: Argument to this function is incorrect: Expected `(Unknown, Unknown, /) -> Option[Result]`, found `(_Key, _Value, /) -> Option[_Result]` | |
+ error[lint:invalid-argument-type] expression/collections/map.py:186:24: Argument to this function is incorrect: Expected `list[tuple[_Key, _Value]]`, found `list[tuple[_Key_, _Result]]` | |
+ error[lint:invalid-argument-type] expression/collections/map.py:454:32: Argument to this function is incorrect: Expected `Block[tuple[Key, Value]]`, found `Block[tuple[_Key, _Value]]` | |
- error[lint:invalid-return-type] expression/collections/maptree.py:253:53: Function can implicitly return `None`, which is not assignable to return type `tuple[Key, Value, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-return-type] expression/collections/maptree.py:253:53: Function can implicitly return `None`, which is not assignable to return type `tuple[Key, Value, Option[MapTreeLeaf[Key, Value]]]` | |
+ error[lint:invalid-return-type] expression/collections/seq.py:469:18: Function can implicitly return `None`, which is not assignable to return type `Iterator[_TResult]` | |
+ error[lint:invalid-return-type] expression/collections/seq.py:489:18: Function can implicitly return `None`, which is not assignable to return type `Iterator[_TSource]` | |
- error[lint:unsupported-operator] expression/core/builder.py:94:23: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/core/builder.py:94:38: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/core/builder.py:94:61: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/core/builder.py:94:78: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
+ error[lint:invalid-return-type] expression/core/option.py:492:12: Return type does not match returned value: Expected `Option[_TSource]`, found `Option[_TSource & ~None]` | |
+ error[lint:invalid-return-type] expression/effect/option.py:71:16: Return type does not match returned value: Expected `Option[_TSource]`, found `Option[_TResult]` | |
- error[lint:unsupported-operator] expression/effect/option.py:102:23: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/option.py:102:50: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/option.py:102:79: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/option.py:102:102: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/result.py:93:23: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/result.py:93:50: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/result.py:93:79: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/result.py:93:102: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/seq.py:105:23: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/seq.py:105:50: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/seq.py:105:79: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
- error[lint:unsupported-operator] expression/effect/seq.py:105:102: Operator `|` is unsupported between objects of type `typing.TypeVar` and `None` | |
+ error[lint:invalid-return-type] expression/extra/parser.py:262:20: Return type does not match returned value: Expected `Parser[Block[_A]]`, found `Parser[Never]` | |
+ error[lint:invalid-argument-type] expression/extra/parser.py:330:23: Argument to this function is incorrect: Expected `Parser[_B]`, found `Parser[Block[_A]]` | |
+ error[lint:invalid-return-type] expression/extra/parser.py:335:12: Return type does not match returned value: Expected `Parser[Block[_A]]`, found `Parser[Block[Block[_A]]]` | |
+ error[lint:invalid-argument-type] expression/extra/parser.py:335:36: Argument to this function is incorrect: Expected `Parser[Block[Block[_A]]]`, found `Parser[Never]` | |
+ error[lint:invalid-assignment] expression/extra/parser.py:349:5: Object of type `Parser[Option[Any]]` is not assignable to `Parser[Option[_A]]` | |
+ error[lint:invalid-assignment] expression/extra/result/traversable.py:36:5: Object of type `Result[Never, Any]` is not assignable to `Result[Block[_TResult], _TError]` | |
+ error[lint:invalid-return-type] expression/extra/result/traversable.py:50:12: Return type does not match returned value: Expected `Result[Block[_TSource], _TError]`, found `Result[Block[_TResult], _TError]` | |
+ error[lint:invalid-argument-type] tests/test_array.py:396:22: Argument to this function is incorrect: Expected `(int, /) -> TypedArray[_TResult]`, found `(int, /) -> TypedArray[int]` | |
+ error[lint:invalid-argument-type] tests/test_array.py:409:72: Argument to this function is incorrect: Expected `(int, /) -> TypedArray[_TResult]`, found `(int, /) -> TypedArray[int]` | |
+ error[lint:invalid-argument-type] tests/test_array.py:420:72: Argument to this function is incorrect: Expected `(int, /) -> TypedArray[_TResult]`, found `(int, /) -> TypedArray[int]` | |
+ error[lint:invalid-argument-type] tests/test_array.py:430:72: Argument to this function is incorrect: Expected `(int, /) -> TypedArray[_TResult]`, found `(int, /) -> TypedArray[int]` | |
+ error[lint:invalid-argument-type] tests/test_block.py:374:22: Argument to this function is incorrect: Expected `(int, /) -> Block[_TResult]`, found `(int, /) -> Block[int]` | |
+ error[lint:invalid-argument-type] tests/test_block.py:387:72: Argument to this function is incorrect: Expected `(int, /) -> Block[_TResult]`, found `(int, /) -> Block[int]` | |
+ error[lint:invalid-argument-type] tests/test_block.py:398:72: Argument to this function is incorrect: Expected `(int, /) -> Block[_TResult]`, found `(int, /) -> Block[int]` | |
+ error[lint:invalid-argument-type] tests/test_block.py:408:72: Argument to this function is incorrect: Expected `(int, /) -> Block[_TResult]`, found `(int, /) -> Block[int]` | |
- error[lint:unsupported-operator] tests/test_gen.py:143:32: Operator `|` is unsupported between objects of type `Literal[int]` and `None` | |
- error[lint:unsupported-operator] tests/test_gen.py:148:32: Operator `|` is unsupported between objects of type `Literal[int]` and `None` | |
+ error[lint:invalid-return-type] tests/test_gen.py:109:17: Function can implicitly return `None`, which is not assignable to return type `Generator[int, None, None]` | |
+ error[lint:invalid-return-type] tests/test_gen.py:121:17: Function can implicitly return `None`, which is not assignable to return type `Generator[int, None, None]` | |
+ error[lint:invalid-return-type] tests/test_gen.py:130:17: Function can implicitly return `None`, which is not assignable to return type `Generator[int, None, None]` | |
+ error[lint:unsupported-operator] tests/test_option.py:120:12: Operator `>` is not supported for types `Option[Literal[42]]` and `Option[Literal[41]]` | |
+ error[lint:unsupported-operator] tests/test_option.py:121:12: Operator `<` is not supported for types `Option[Literal[41]]` and `Option[Literal[42]]` | |
+ error[lint:invalid-assignment] tests/test_option.py:148:5: Object of type `Option[Literal[42]]` is not assignable to `Option[int]` | |
+ error[lint:invalid-assignment] tests/test_option.py:163:5: Object of type `Option[Literal[42]]` is not assignable to `Option[int]` | |
+ error[lint:invalid-assignment] tests/test_option.py:177:5: Object of type `Option[Literal[42]]` is not assignable to `Option[int]` | |
+ error[lint:invalid-assignment] tests/test_option.py:526:5: Object of type `Option[B]` is not assignable to `Option[A]` | |
+ error[lint:invalid-return-type] tests/test_option_builder.py:271:16: Return type does not match returned value: Expected `Generator[str, str, str]`, found `Literal["Not found"] | @Todo(Generic `typing.Generator` type)` | |
+ error[lint:invalid-return-type] tests/test_result_builder.py:279:16: Return type does not match returned value: Expected `Generator[str, str, str]`, found `Literal["Not found"] | @Todo(Generic `typing.Generator` type)` | |
+ error[lint:unsupported-operator] tests/test_seq.py:186:27: Operator `+` is unsupported between objects of type `list[int]` and `list[int]` | |
+ error[lint:unsupported-operator] tests/test_seq.py:193:27: Operator `+` is unsupported between objects of type `list[int]` and `list[int]` | |
+ error[lint:unsupported-operator] tests/test_seq.py:200:27: Operator `+` is unsupported between objects of type `list[int]` and `list[int]` | |
+ error[lint:unsupported-operator] tests/test_seq.py:207:27: Operator `+` is unsupported between objects of type `list[int]` and `list[int]` | |
+ error[lint:unsupported-operator] tests/test_seq.py:214:27: Operator `+` is unsupported between objects of type `list[int]` and `list[int]` | |
+ error[lint:invalid-argument-type] tests/test_seq.py:360:27: Argument to this function is incorrect: Expected `(int, /) -> Seq[_TResult]`, found `(int, /) -> Seq[int]` | |
+ error[lint:invalid-argument-type] tests/test_seq.py:373:83: Argument to this function is incorrect: Expected `(int, /) -> Seq[_TResult]`, found `(int, /) -> Seq[int]` | |
- error[lint:unsupported-operator] tests/test_seq_builder.py:17:27: Operator `|` is unsupported between objects of type `Literal[int]` and `None` | |
- error[lint:unsupported-operator] tests/test_seq_builder.py:17:44: Operator `|` is unsupported between objects of type `Literal[int]` and `None` | |
+ error[lint:invalid-argument-type] tests/test_seq.py:384:83: Argument to this function is incorrect: Expected `(int, /) -> Seq[_TResult]`, found `(int, /) -> Seq[int]` | |
+ error[lint:invalid-return-type] tests/test_seq_builder.py:232:16: Return type does not match returned value: Expected `Generator[str, Any, str]`, found `Literal["Not found", "42"]` | |
- Found 554 diagnostics | |
+ Found 583 diagnostics | |
asynq (https://github.com/quora/asynq) | |
+ error[lint:no-matching-overload] asynq/async_task.py:335:29: No overload of bound method `join` matches arguments | |
+ error[lint:invalid-argument-type] asynq/tests/test_profiler.py:34:24: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] asynq/tests/test_profiler.py:38:20: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] asynq/tools.py:177:21: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
+ error[lint:unsupported-operator] asynq/tools.py:229:21: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
+ error[lint:unsupported-operator] asynq/tools.py:420:25: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
- Found 270 diagnostics | |
+ Found 276 diagnostics | |
boostedblob (https://github.com/hauntsaninja/boostedblob) | |
+ error[lint:invalid-argument-type] boostedblob/_recover.py:72:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200]]` | |
+ error[lint:invalid-argument-type] boostedblob/_recover.py:91:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[202]]` | |
+ error[lint:invalid-argument-type] boostedblob/_recover.py:104:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[202]]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:191:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[400]]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:250:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200]]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:275:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[403]]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:298:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[403]]` | |
+ error[lint:invalid-parameter-default] boostedblob/azure_auth.py:306:43: Default value of type `tuple[Literal[200]]` is not assignable to annotated parameter type `Sequence[int]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:354:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[401], Literal[403], Literal[429]]` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:390:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[401], Literal[403]]` | |
+ error[lint:unsupported-operator] boostedblob/azure_auth.py:486:26: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[SupportsRichComparisonT]` | |
- error[lint:invalid-argument-type] boostedblob/azure_auth.py:500:34: Argument to this function is incorrect: Expected `Sized`, found `bytes | bytearray | memoryview | None` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:500:34: Argument to this function is incorrect: Expected `Sized`, found `bytes | bytearray | memoryview[Unknown] | None` | |
+ error[lint:invalid-argument-type] boostedblob/azure_auth.py:559:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[403]]` | |
+ error[lint:invalid-return-type] boostedblob/boost.py:369:16: Return type does not match returned value: Expected `Task[T]`, found `Task[_T]` | |
+ error[lint:invalid-return-type] boostedblob/boost.py:410:16: Return type does not match returned value: Expected `Task[T]`, found `Task[_T]` | |
- warning[lint:unused-ignore-comment] boostedblob/boost.py:550:78: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] boostedblob/cli.py:624:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/cli.py:641:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/cli.py:680:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/cli.py:714:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] boostedblob/cli.py:787:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] boostedblob/copying.py:181:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[201]]` | |
+ error[lint:invalid-argument-type] boostedblob/copying.py:248:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[202]]` | |
+ error[lint:invalid-argument-type] boostedblob/delete.py:41:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[202]]` | |
+ error[lint:invalid-argument-type] boostedblob/delete.py:60:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[204]]` | |
+ error[lint:unsupported-operator] boostedblob/listing.py:300:19: Operator `/` is unsupported between objects of type `LocalPath` and `AnyStr` | |
+ error[lint:invalid-argument-type] boostedblob/listing.py:300:29: Argument to this function is incorrect: Expected `str`, found `AnyStr` | |
- warning[lint:unused-ignore-comment] boostedblob/listing.py:399:37: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] boostedblob/listing.py:403:36: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] boostedblob/listing.py:409:71: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] boostedblob/read.py:54:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[206]] | tuple[Literal[200]]` | |
+ error[lint:invalid-argument-type] boostedblob/read.py:71:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[206]] | tuple[Literal[200]]` | |
+ error[lint:invalid-argument-type] boostedblob/request.py:315:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[404]]` | |
- error[lint:invalid-argument-type] boostedblob/write.py:67:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:67:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:69:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[201]]` | |
- error[lint:invalid-argument-type] boostedblob/write.py:88:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:88:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:225:13: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[201]] | tuple[Literal[308]]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:341:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[404], Literal[400]]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:398:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[201], Literal[404], Literal[412]]` | |
- error[lint:invalid-argument-type] boostedblob/write.py:411:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:411:9: Argument to this function is incorrect: Expected `dict[str, Any] | bytes | None`, found `bytes | bytearray | memoryview[Unknown]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:412:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[201]]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:429:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[201], Literal[400]]` | |
+ error[lint:invalid-argument-type] boostedblob/write.py:483:9: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Literal[200], Literal[201]]` | |
- Found 137 diagnostics | |
+ Found 168 diagnostics | |
dulwich (https://github.com/dulwich/dulwich) | |
- error[lint:invalid-argument-type] dulwich/cli.py:132:31: Argument to this function is incorrect: Expected `((dict[bytes, bytes], int | None, /) -> @Todo(specialized non-generic class)) | None`, found `Unknown | (bound method PackBasedObjectStore.determine_wants_all(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> @Todo(specialized non-generic class)) | (def determine_wants(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> @Todo(specialized non-generic class))` | |
+ error[lint:invalid-argument-type] dulwich/cli.py:132:31: Argument to this function is incorrect: Expected `((dict[bytes, bytes], int | None, /) -> list[bytes]) | None`, found `Unknown | (bound method PackBasedObjectStore.determine_wants_all(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> list[Unknown | bytes]) | (def determine_wants(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> list[Unknown | bytes])` | |
- error[lint:invalid-assignment] dulwich/client.py:959:13: Object of type `Unknown | (bound method PackBasedObjectStore.determine_wants_all(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> @Todo(specialized non-generic class))` is not assignable to `((dict[bytes, bytes], int | None, /) -> @Todo(specialized non-generic class)) | None` | |
+ error[lint:invalid-assignment] dulwich/client.py:959:13: Object of type `Unknown | (bound method PackBasedObjectStore.determine_wants_all(refs: dict[Unknown | bytes, Unknown | bytes], depth: int | None = None) -> list[Unknown | bytes])` is not assignable to `((dict[bytes, bytes], int | None, /) -> list[bytes]) | None` | |
+ error[lint:invalid-argument-type] dulwich/client.py:1916:44: Argument to this function is incorrect: Expected `Sequence[tuple[Unknown | bytes, tuple[@Todo(Generic tuple specializations), ...] | None]]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] dulwich/client.py:2487:28: Return type does not match returned value: Expected `tuple[dict[Unknown | bytes, bytes], @Todo(specialized non-generic class), str, dict[Unknown | bytes, Unknown | bytes], dict[Unknown | bytes, bytes]]`, found `tuple[dict[bytes, bytes], Unknown, Unknown | str, dict[bytes, bytes], dict[bytes, bytes]]` | |
+ error[lint:invalid-return-type] dulwich/client.py:2487:28: Return type does not match returned value: Expected `tuple[dict[Unknown | bytes, bytes], set[bytes], str, dict[Unknown | bytes, Unknown | bytes], dict[Unknown | bytes, bytes]]`, found `tuple[dict[bytes, bytes], Unknown, Unknown | str, dict[bytes, bytes], dict[bytes, bytes]]` | |
- error[lint:invalid-return-type] dulwich/client.py:2528:28: Return type does not match returned value: Expected `tuple[dict[Unknown | bytes, bytes], @Todo(specialized non-generic class), str, dict[Unknown | bytes, Unknown | bytes], dict[Unknown | bytes, bytes]]`, found `tuple[dict[bytes, bytes] | Unknown, Unknown, Unknown | str, dict[bytes, bytes] | Unknown, dict[bytes, bytes] | Unknown]` | |
+ error[lint:invalid-return-type] dulwich/client.py:2528:28: Return type does not match returned value: Expected `tuple[dict[Unknown | bytes, bytes], set[bytes], str, dict[Unknown | bytes, Unknown | bytes], dict[Unknown | bytes, bytes]]`, found `tuple[dict[bytes, bytes] | Unknown, Unknown | set[bytes], Unknown | str, dict[bytes, bytes] | Unknown, dict[bytes, bytes] | Unknown]` | |
+ error[lint:invalid-return-type] dulwich/config.py:711:69: Function can implicitly return `None`, which is not assignable to return type `Iterator[bytes]` | |
+ error[lint:not-iterable] dulwich/config.py:752:38: Object of type `_KT` is not iterable | |
- error[lint:invalid-assignment] dulwich/diff_tree.py:276:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] dulwich/diff_tree.py:276:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[TreeChange | None]]` | |
+ error[lint:invalid-argument-type] dulwich/object_store.py:460:13: Argument to this function is incorrect: Expected `Sequence[tuple[Unknown | bytes, tuple[@Todo(Generic tuple specializations), ...] | None]]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] dulwich/objects.py:1355:45: Operator `+` is unsupported between objects of type `None | bytes` and `Literal[b"\n"]` | |
+ error[lint:invalid-return-type] dulwich/pack.py:1811:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[UnpackedObject]` | |
+ error[lint:not-iterable] dulwich/pack.py:1871:45: Object of type `_T` is not iterable | |
- warning[lint:unused-ignore-comment] dulwich/pack.py:2103:41: Unused blanket `type: ignore` directive | |
- error[lint:invalid-assignment] dulwich/pack.py:2568:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] dulwich/pack.py:2568:9: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, list[UnpackedObject]]` | |
+ error[lint:invalid-argument-type] dulwich/porcelain.py:1412:29: Argument to this function is incorrect: Expected `AnyStr`, found `Literal[".git"]` | |
+ error[lint:invalid-argument-type] dulwich/porcelain.py:1417:30: Argument to this function is incorrect: Expected `AnyStr`, found `Literal[".git"]` | |
+ error[lint:no-matching-overload] dulwich/refs.py:636:23: No overload of bound method `replace` matches arguments | |
+ error[lint:no-matching-overload] dulwich/refs.py:637:19: No overload of bound method `strip` matches arguments | |
+ error[lint:no-matching-overload] dulwich/refs.py:658:23: No overload of bound method `replace` matches arguments | |
+ error[lint:invalid-argument-type] dulwich/repo.py:504:32: Argument to this function is incorrect: Expected `Sequence[tuple[Unknown | bytes, tuple[@Todo(Generic tuple specializations), ...] | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] dulwich/server.py:413:59: Argument to this function is incorrect: Expected `Sequence[tuple[Unknown | bytes, tuple[@Todo(Generic tuple specializations), ...] | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] dulwich/walk.py:111:21: Argument to this function is incorrect: Expected `list[Unknown | bytes]`, found `None | Unknown | list[Unknown]` | |
- Found 148 diagnostics | |
+ Found 162 diagnostics | |
pyppeteer (https://github.com/pyppeteer/pyppeteer) | |
- error[lint:invalid-parameter-default] pyppeteer/browser.py:39:18: Default value of type `None` is not assignable to annotated parameter type `() -> @Todo(specialized non-generic class)` | |
+ error[lint:invalid-parameter-default] pyppeteer/browser.py:39:18: Default value of type `None` is not assignable to annotated parameter type `() -> Awaitable[None]` | |
- error[lint:invalid-parameter-default] pyppeteer/browser.py:142:22: Default value of type `None` is not assignable to annotated parameter type `() -> @Todo(specialized non-generic class)` | |
+ error[lint:invalid-parameter-default] pyppeteer/browser.py:142:22: Default value of type `None` is not assignable to annotated parameter type `() -> Awaitable[None]` | |
- error[lint:invalid-parameter-default] pyppeteer/page.py:91:9: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] pyppeteer/page.py:91:9: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] pyppeteer/page.py:119:9: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] pyppeteer/page.py:119:9: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
- error[lint:invalid-parameter-default] pyppeteer/page.py:1695:46: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] pyppeteer/page.py:1695:46: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
psycopg (https://github.com/psycopg/psycopg) | |
+ error[lint:invalid-return-type] psycopg/psycopg/_acompat.py:50:12: Return type does not match returned value: Expected `Task[None]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_adapters_map.py:221:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_adapters_map.py:253:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:257:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:262:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:310:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["cancel() cannot be used with a prepared two-phase transaction"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:482:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:519:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:528:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:530:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:570:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["Explicit commit() forbidden within a Transaction context. (Transaction will be automatically committed on successful exit from context.)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:576:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["commit() cannot be used during a two-phase transaction"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:590:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["Explicit rollback() forbidden within a Transaction context. (Either raise Rollback() or allow an exception to propagate out of the context.)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:596:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["rollback() cannot be used during a two-phase transaction"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:634:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:640:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["can't use two-phase transactions in autocommit mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:649:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["'tpc_prepare()' must be called inside a two-phase transaction"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:653:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["'tpc_prepare()' cannot be used during a prepared two-phase transaction"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:668:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_connection_base.py:675:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_attempts.py:53:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_attempts.py:56:17: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_attempts_async.py:51:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_attempts_async.py:54:17: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_utils.py:34:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_conninfo_utils.py:42:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_copy_base.py:87:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_copy_base.py:264:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["binary copy doesn't start with the expected signature"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_copy_base.py:335:37: Argument to this function is incorrect: Expected `Sequence[PyFormat]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_copy_base.py:352:37: Argument to this function is incorrect: Expected `Sequence[PyFormat]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_copy_base.py:385:29: Argument to this function is incorrect: Expected `Sequence[@Todo(Support for `typing.TypeAlias`) | None]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:358:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the operation in stream() didn't produce a result"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:373:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the cursor is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:389:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["COPY cannot be used in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:403:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["COPY cannot be mixed with other operations"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:468:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["got no result from the query"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:482:37: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["pipeline aborted"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:485:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["COPY cannot be used with this method; use copy() instead"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:489:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:574:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the cursor is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:577:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["no result available"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:584:37: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["pipeline aborted"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:595:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_cursor_base.py:609:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_encodings.py:130:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
- error[lint:call-non-callable] psycopg/psycopg/_pipeline.py:51:30: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] psycopg/psycopg/_pipeline.py:52:29: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_pipeline.py:172:41: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["pipeline aborted"]` | |
- error[lint:call-non-callable] psycopg/psycopg/_preparing.py:52:26: Object of type `GenericAlias` is not callable | |
+ error[lint:invalid-return-type] psycopg/psycopg/_py_transformer.py:185:20: Return type does not match returned value: Expected `Sequence[@Todo(Support for `typing.TypeAlias`) | None]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] psycopg/psycopg/_py_transformer.py:201:16: Return type does not match returned value: Expected `Sequence[@Todo(Support for `typing.TypeAlias`) | None]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_py_transformer.py:274:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["None dumper not found"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_py_transformer.py:299:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["result not set"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_py_transformer.py:303:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-return-type] psycopg/psycopg/_py_transformer.py:328:16: Return type does not match returned value: Expected `Row | None`, found `tuple[@Todo(Generic tuple specializations), ...]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_py_transformer.py:333:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_py_transformer.py:350:40: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["unknown oid loader not found"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:145:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-return-type] psycopg/psycopg/_queries.py:161:28: Return type does not match returned value: Expected `Sequence[Any]`, found `tuple[()]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:165:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:unsupported-operator] psycopg/psycopg/_queries.py:198:37: Operator `+` is unsupported between objects of type `int | str` and `Literal[1]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:216:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:387:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:393:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["incomplete placeholder: '%'; if you want to use '%' as an operator you can double it up, i.e. use '%%'"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:398:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_queries.py:410:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["positional and named placeholders cannot be mixed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_server_cursor.py:99:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["server-side cursors not supported in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_server_cursor.py:114:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["executemany not supported on server-side cursors"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_server_cursor_async.py:99:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["server-side cursors not supported in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_server_cursor_async.py:114:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["executemany not supported on server-side cursors"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_server_cursor_base.py:153:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the cursor is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_struct.py:49:9: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["cannot dump Float4: Python affected by bug #304. Note that the psycopg-c and psycopg-binary packages are not affected by this issue. See https://github.com/psycopg/psycopg/issues/304"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/_typeinfo.py:139:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/client_cursor.py:62:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["client-side cursors don't support binary results"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/connection.py:466:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/connection_async.py:104:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["Psycopg cannot use the 'ProactorEventLoop' to run in async mode. Please use a compatible event loop, for instance by setting 'asyncio.set_event_loop_policy(WindowsSelectorEventLoopPolicy())'"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/connection_async.py:509:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/conninfo.py:103:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/conninfo.py:140:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/crdb/connection.py:52:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["CockroachDB doesn't support prepared statements"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/crdb/connection.py:90:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["'crdb_version' parameter status not set"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/crdb/connection.py:93:36: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/cursor.py:146:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["stream() cannot be used in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/cursor_async.py:146:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["stream() cannot be used in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/dbapi20.py:41:36: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown | Literal[17]]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/dbapi20.py:44:5: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown | Literal[1114], Unknown | Literal[1184], Unknown | Literal[1082], Unknown | Literal[1083], Unknown | Literal[1266], Unknown | Literal[1186]]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/dbapi20.py:55:5: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown | Literal[21], Unknown | Literal[23], Unknown | Literal[20], Unknown | Literal[700], Unknown | Literal[701], Unknown | Literal[1700]]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/dbapi20.py:64:34: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown | Literal[26]]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/dbapi20.py:66:15: Argument to this function is incorrect: Expected `Sequence[int]`, found `tuple[Unknown | Literal[25], Unknown | Literal[1043], Unknown | Literal[1042]]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/errors.py:78:32: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/errors.py:554:16: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:81:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:92:47: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["connection timeout expired"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:101:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:106:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:117:41: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["cancellation timeout expired"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:127:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:130:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:274:47: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["COPY cannot be used in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/generators.py:326:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["you cannot mix COPY with other operations"]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:39:5: Object of type `tuple[Literal[c_int], Literal[c_char_p]]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:45:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:121:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:130:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:134:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:138:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:142:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:146:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:150:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:154:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:158:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:162:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:166:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:170:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:177:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:181:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:185:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:189:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:205:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:211:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:215:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:219:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:223:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:227:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:231:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:235:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:239:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:243:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:247:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:251:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:255:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:259:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:263:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:272:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:276:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:289:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:293:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:305:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:309:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:314:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:318:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:326:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:332:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:338:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:342:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:349:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:353:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:357:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:363:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:367:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:371:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:375:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:379:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:383:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:387:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:391:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:395:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:399:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:403:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:407:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:415:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:419:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:423:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:430:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:434:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:450:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:459:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:468:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:478:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:482:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:495:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:499:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:511:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:515:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:520:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:524:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:532:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:536:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:540:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:544:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:548:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:552:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:558:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:563:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:572:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:576:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:580:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:584:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:588:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:592:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:596:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:600:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:604:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:620:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:624:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:636:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:643:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:647:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:651:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:658:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:663:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:669:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:675:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:680:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:687:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:693:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:697:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:706:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:713:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:717:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:721:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:725:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:729:5: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-assignment] psycopg/psycopg/pq/_pq_ctypes.py:743:1: Object of type `list[Unknown]` is not assignable to attribute `argtypes` of type `Sequence[@Todo(unsupported type[X] special form)]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:164:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["couldn't reset connection"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:246:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is lost"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:280:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:290:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:307:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:325:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:342:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:362:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:443:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:495:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:505:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:515:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:524:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:534:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:543:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:553:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:561:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:570:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:580:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:594:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:600:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["flushing failed: the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:603:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:608:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["setting single row mode failed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:612:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["setting chunked rows mode failed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:621:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["couldn't create cancelConn object"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:631:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["couldn't create cancel object"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:648:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:655:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:664:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:681:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["currently only supported on Linux"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:714:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:732:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:753:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["failed to enter pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:772:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["connection not in pipeline mode"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:774:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["failed to sync pipeline"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:783:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:791:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:801:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:809:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:814:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:939:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["PQsetResultAttrs failed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:965:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:976:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:990:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["cancel connection not opened"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1018:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the cancel connection is closed"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1061:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1091:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `@Todo(map_with_boundness: intersections with negative contributions) | str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1127:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["escape_literal failed: no connection provided"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1136:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1144:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["escape_identifier failed: no connection provided"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1153:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/pq/pq_ctypes.py:1177:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/rows.py:216:38: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["at least one column expected"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/rows.py:234:28: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["the cursor doesn't have a result"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:92:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:94:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:94:48: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:99:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:290:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/sql.py:321:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/transaction.py:225:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:70:21: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:90:31: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["cannot dump a recursive list"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:259:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["lists cannot contain empty lists"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:268:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["nested lists have inconsistent lengths"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:284:43: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["nested lists have inconsistent depths"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:395:31: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["malformed array: no '=' after dimension information"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:408:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["malformed array: unexpected '}'"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/array.py:414:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/composite.py:238:33: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/composite.py:240:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Support for `typing.TypeAlias`) | None]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:75:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:245:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:266:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:268:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:270:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:282:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["date too small (before year 1)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:284:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["date too large (after year 10K)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:293:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:309:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:323:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:339:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:363:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:379:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:424:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:448:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:473:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["timestamp too small (before year 1)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:475:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["timestamp too large (after year 10K)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:588:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["timestamp too small (before year 1)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:590:33: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["timestamp too large (after year 10K)"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:619:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:641:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:667:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:699:26: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["timestamp too small (before year 1): {s!r}"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:701:26: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/datetime.py:703:26: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/enum.py:91:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/hstore.py:66:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["hstore keys can only be strings"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/hstore.py:74:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["hstore keys can only be strings"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/hstore.py:132:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["error parsing hstore pair at char 0"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/hstore.py:141:31: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/json.py:212:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["unknown jsonb binary format: {data[0]}"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:52:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["multirange types are only available from PostgreSQL 14"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:301:17: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:325:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["malformed multirange: data after closing brace"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:329:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:333:31: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["malformed multirange: separator missing"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/multirange.py:357:31: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["unexpected trailing data in multirange"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/numeric.py:341:35: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/range.py:440:27: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["trying to dump a range element without information"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/range.py:466:13: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/types/string.py:52:29: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Literal["PostgreSQL text fields cannot contain NUL (0x00) bytes"]` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/waiting.py:136:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/waiting.py:160:34: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-argument-type] psycopg/psycopg/waiting.py:197:39: Argument to this function is incorrect: Expected `Sequence[Any]`, found `str` | |
+ error[lint:invalid-return-type] psycopg_pool/psycopg_pool/_acompat.py:100:12: Return type does not match returned value: Expected `Task[None]`, found `Task[_T]` | |
- error[lint:call-non-callable] psycopg_pool/psycopg_pool/pool.py:75:25: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] psycopg_pool/psycopg_pool/pool_async.py:75:25: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] tests/_test_cursor.py:41:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:invalid-assignment] tests/crdb/test_copy.py:130:17: Object of type `tuple` is not assignable to `tuple[Any, Unknown]` | |
+ error[lint:invalid-assignment] tests/crdb/test_copy.py:130:17: Object of type `tuple[Unknown, ...]` is not assignable to `tuple[Any, Unknown]` | |
- error[lint:invalid-assignment] tests/crdb/test_copy_async.py:129:17: Object of type `tuple` is not assignable to `tuple[Any, Unknown]` | |
+ error[lint:invalid-assignment] tests/crdb/test_copy_async.py:129:17: Object of type `tuple[Unknown, ...]` is not assignable to `tuple[Any, Unknown]` | |
+ error[lint:call-non-callable] tests/crdb/test_cursor.py:76:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/crdb/test_cursor_async.py:77:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:74:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:94:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:190:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:no-matching-overload] tests/fix_db.py:209:2: No overload of function `fixture` matches arguments | |
+ error[lint:call-non-callable] tests/fix_db.py:213:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:no-matching-overload] tests/fix_db.py:232:2: No overload of function `fixture` matches arguments | |
+ error[lint:call-non-callable] tests/fix_db.py:236:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:320:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:326:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:331:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:340:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_db.py:365:9: Object of type `_WithException[Unknown, Literal[Exit]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_dns.py:45:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_faker.py:387:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_gc.py:75:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_pq.py:47:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_pq.py:62:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_pq.py:86:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_pq.py:88:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:invalid-return-type] tests/fix_pq.py:119:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[TraceEntry]` | |
+ error[lint:call-non-callable] tests/fix_proxy.py:92:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_psycopg.py:47:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/fix_psycopg.py:51:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool.py:976:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool_async.py:979:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool_common.py:683:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool_common_async.py:694:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool_null.py:487:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pool/test_pool_null_async.py:489:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pq/test_pgconn.py:42:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/pq/test_pgconn.py:656:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/pq/test_pgconn.py:660:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:unresolved-attribute] tests/scripts/bench-411.py:340:57: Type `_EnumMemberT` has no attribute `value` | |
- error[lint:call-non-callable] tests/scripts/pipeline-demo.py:137:16: Object of type `GenericAlias` is not callable | |
- error[lint:call-non-callable] tests/scripts/pipeline-demo.py:138:21: Object of type `GenericAlias` is not callable | |
+ error[lint:call-non-callable] tests/test_concurrency.py:369:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_concurrency_async.py:283:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_connection_info.py:23:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_cursor_common.py:184:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_cursor_common_async.py:182:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_dns.py:23:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_generators.py:19:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_generators.py:178:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_gevent.py:62:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_gevent.py:77:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_sql.py:409:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_tpc.py:16:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_tpc_async.py:13:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_transaction.py:93:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_transaction_async.py:92:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/test_typing.py:282:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] tests/test_waiting.py:128:13: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/types/test_composite.py:155:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/types/test_json.py:67:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/types/test_range.py:263:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] tests/types/test_shapely.py:83:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:unresolved-attribute] tests/types/test_string.py:238:12: Type `_T` has no attribute `encode` | |
+ error[lint:call-non-callable] tests/utils.py:89:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:unsupported-operator] tools/async_to_sync.py:139:23: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:unsupported-operator] tools/async_to_sync.py:189:15: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:unresolved-attribute] tools/bump_version.py:304:18: Type `_EnumMemberT` has no attribute `value` | |
+ error[lint:unresolved-attribute] tools/bump_version.py:323:18: Type `_EnumMemberT` has no attribute `value` | |
- Found 1275 diagnostics | |
+ Found 1658 diagnostics | |
paasta (https://github.com/yelp/paasta) | |
+ error[lint:invalid-argument-type] paasta_tools/api/views/resources.py:45:69: Argument to this function is incorrect: Expected `Sequence[str]`, found `(Unknown & ~None) | list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/api/views/resources.py:46:64: Argument to this function is incorrect: Expected `Sequence[str]`, found `(Unknown & ~None) | list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/apply_external_resources.py:22:25: Argument to this function is incorrect: Expected `AnyStr`, found `Unknown | Literal[".applied"]` | |
+ error[lint:no-matching-overload] paasta_tools/apply_external_resources.py:23:9: No overload of bound method `sort` matches arguments | |
+ error[lint:no-matching-overload] paasta_tools/apply_external_resources.py:53:9: No overload of bound method `sort` matches arguments | |
+ error[lint:unresolved-attribute] paasta_tools/autoscaling/max_all_k8s_services.py:30:29: Type `InstanceConfig_T` has no attribute `get_max_instances` | |
+ error[lint:unresolved-attribute] paasta_tools/autoscaling/max_all_k8s_services.py:32:41: Type `InstanceConfig_T` has no attribute `format_kubernetes_app` | |
+ error[lint:unresolved-attribute] paasta_tools/check_autoscaler_max_instances.py:63:20: Type `InstanceConfig_T` has no attribute `get_autoscaling_metric_spec` | |
+ error[lint:invalid-argument-type] paasta_tools/check_autoscaler_max_instances.py:80:17: Argument to this function is incorrect: Expected `LongRunningServiceConfig`, found `InstanceConfig_T` | |
+ error[lint:unresolved-attribute] paasta_tools/check_autoscaler_max_instances.py:85:28: Type `InstanceConfig_T` has no attribute `get_sanitised_deployment_name` | |
+ error[lint:unresolved-attribute] paasta_tools/check_autoscaler_max_instances.py:103:44: Type `InstanceConfig_T` has no attribute `get_autoscaling_params` | |
+ error[lint:invalid-argument-type] paasta_tools/check_flink_services_health.py:146:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_flink_services_health.py:147:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_flink_services_health.py:148:61: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_flink_services_health.py:150:35: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_services_replication_tools.py:205:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_services_replication_tools.py:211:13: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/check_services_replication_tools.py:215:63: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] paasta_tools/check_services_replication_tools.py:255:52: Default value of type `None` is not assignable to annotated parameter type `set` | |
+ error[lint:invalid-parameter-default] paasta_tools/check_services_replication_tools.py:255:52: Default value of type `None` is not assignable to annotated parameter type `set[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cleanup_kubernetes_jobs.py:242:60: Argument to this function is incorrect: Expected `Sequence[Any]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cli.py:41:38: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/autoscale.py:79:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/autoscale.py:80:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:unresolved-attribute] paasta_tools/cli/cmds/list_namespaces.py:77:17: Type `InstanceConfig` has no attribute `get_executor` | |
+ error[lint:unsupported-operator] paasta_tools/cli/cmds/local_run.py:1305:27: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/logs.py:282:5: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/logs.py:320:5: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/logs.py:690:9: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/logs.py:952:9: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/logs.py:1247:9: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/logs.py:1529:40: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/logs.py:1529:80: Argument to this function is incorrect: Expected `Iterable[str]`, found `None | Any` | |
- error[lint:invalid-parameter-default] paasta_tools/cli/cmds/mark_for_deployment.py:565:35: Default value of type `None` is not assignable to annotated parameter type `Mapping[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-parameter-default] paasta_tools/cli/cmds/mark_for_deployment.py:565:35: Default value of type `None` is not assignable to annotated parameter type `Mapping[str, Collection[str]]` | |
- error[lint:invalid-assignment] paasta_tools/cli/cmds/mark_for_deployment.py:1925:21: Object of type `None` is not assignable to attribute `waiting_on` of type `Mapping[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] paasta_tools/cli/cmds/mark_for_deployment.py:1925:21: Object of type `None` is not assignable to attribute `waiting_on` of type `Mapping[str, Collection[str]]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/mesh_status.py:87:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/mesh_status.py:88:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
- error[lint:invalid-return-type] paasta_tools/cli/cmds/mesh_status.py:117:16: Return type does not match returned value: Expected `tuple[int, list]`, found `tuple[Unknown | None, list]` | |
+ error[lint:invalid-return-type] paasta_tools/cli/cmds/mesh_status.py:117:16: Return type does not match returned value: Expected `tuple[int, list[Unknown]]`, found `tuple[Unknown | None, list[Unknown]]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/mesh_status.py:155:49: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] paasta_tools/cli/cmds/rollback.py:287:64: Argument to this function is incorrect: Expected `Mapping[DeploymentVersion, tuple]`, found `Mapping[DeploymentVersion, tuple[str, str]]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/rollback.py:287:64: Argument to this function is incorrect: Expected `Mapping[DeploymentVersion, tuple[Unknown, ...]]`, found `Mapping[DeploymentVersion, tuple[str, str]]` | |
- error[lint:invalid-argument-type] paasta_tools/cli/cmds/rollback.py:298:64: Argument to this function is incorrect: Expected `Mapping[DeploymentVersion, tuple]`, found `Mapping[DeploymentVersion, tuple[str, str]]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/rollback.py:298:64: Argument to this function is incorrect: Expected `Mapping[DeploymentVersion, tuple[Unknown, ...]]`, found `Mapping[DeploymentVersion, tuple[str, str]]` | |
+ error[lint:unsupported-operator] paasta_tools/cli/cmds/spark_run.py:1183:27: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
- warning[lint:redundant-cast] paasta_tools/cli/cmds/spark_run.py:1379:23: Value is already of type `list` | |
+ warning[lint:redundant-cast] paasta_tools/cli/cmds/spark_run.py:1379:23: Value is already of type `list[Unknown]` | |
+ error[lint:invalid-assignment] paasta_tools/cli/cmds/status.py:99:1: Object of type `list[Unknown]` is not assignable to `Sequence[type[InstanceConfig]]` | |
+ error[lint:invalid-assignment] paasta_tools/cli/cmds/status.py:111:1: Object of type `list[Unknown]` is not assignable to `Sequence[type[InstanceConfig]]` | |
+ error[lint:unresolved-attribute] paasta_tools/cli/cmds/status.py:1198:13: Type `_EnumMemberT` has no attribute `color` | |
+ error[lint:unresolved-attribute] paasta_tools/cli/cmds/status.py:1198:58: Type `_EnumMemberT` has no attribute `message` | |
+ error[lint:invalid-return-type] paasta_tools/cli/cmds/status.py:1984:12: Return type does not match returned value: Expected `tuple[int, Sequence[str]]`, found `tuple[Literal[0, 1], list[Unknown]]` | |
+ error[lint:invalid-return-type] paasta_tools/cli/cmds/status.py:2016:12: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/cli/cmds/status.py:2071:12: Return type does not match returned value: Expected `Sequence[(InstanceConfig, /) -> bool]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/status.py:2142:44: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/cmds/status.py:2153:55: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/utils.py:97:32: Argument to this function is incorrect: Expected `str`, found `AnyStr` | |
- error[lint:invalid-return-type] paasta_tools/cli/utils.py:415:12: Return type does not match returned value: Expected `tuple[list, str]`, found `tuple[@Todo(specialized non-generic class) | list, None | str]` | |
+ error[lint:invalid-return-type] paasta_tools/cli/utils.py:415:12: Return type does not match returned value: Expected `tuple[list[Unknown], str]`, found `tuple[list[str] | list[Unknown], None | str]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/utils.py:450:20: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/utils.py:452:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/utils.py:452:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/cli/utils.py:452:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] paasta_tools/cli/utils.py:943:9: Object of type `list[Unknown]` is not assignable to `Sequence[str] | None` | |
+ error[lint:not-iterable] paasta_tools/cli/utils.py:948:20: Object of type `Sequence[str] | None` may not be iterable | |
- error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:48:54: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)]` is not callable on object of type `list` | |
+ error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:48:54: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]]` is not callable on object of type `list[Unknown]` | |
- error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:49:43: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)]` is not callable on object of type `list` | |
+ error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:49:43: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]]` is not callable on object of type `list[Unknown]` | |
- error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:50:43: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> @Todo(specialized non-generic class)]` is not callable on object of type `list` | |
+ error[lint:call-non-callable] paasta_tools/contrib/bounce_log_latency_parser.py:50:43: Method `__getitem__` of type `Overload[(i: SupportsIndex, /) -> _T, (s: slice[Any, _StartT_co, _StartT_co | _StopT_co], /) -> list[Unknown]]` is not callable on object of type `list[Unknown]` | |
+ error[lint:unresolved-attribute] paasta_tools/contrib/get_running_task_allocation.py:338:21: Type `TaskAllocationInfo` has no attribute `_asdict` | |
+ error[lint:invalid-argument-type] paasta_tools/contrib/timeouts_metrics_prom.py:62:49: Argument to this function is incorrect: Expected `str`, found `AnyStr` | |
+ error[lint:invalid-return-type] paasta_tools/drain_lib.py:206:20: Return type does not match returned value: Expected `Sequence[T]`, found `None` | |
+ error[lint:invalid-argument-type] paasta_tools/envoy_tools.py:195:9: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown] | None` | |
+ error[lint:unsupported-operator] paasta_tools/frameworks/native_scheduler.py:470:36: Operator `+` is unsupported between objects of type `list[SupportsRichComparisonT]` and `list[SupportsRichComparisonT]` | |
- error[lint:invalid-return-type] paasta_tools/frameworks/native_scheduler.py:551:16: Return type does not match returned value: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/frameworks/native_scheduler.py:551:16: Return type does not match returned value: Expected `Mapping[str, Collection[str]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:414:9: Argument to this function is incorrect: Expected `Sequence[tuple[EnvoyBackend | None, Unknown | None]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:549:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/instance/kubernetes.py:584:12: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:671:17: Argument to this function is incorrect: Expected `Future[Unknown]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:677:43: Argument to this function is incorrect: Expected `Future[dict[Unknown, Unknown]]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:687:17: Argument to this function is incorrect: Expected `Future[Unknown]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:688:17: Argument to this function is incorrect: Expected `Future[dict[Unknown, Unknown]]`, found `Task[_T] | None` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:699:17: Argument to this function is incorrect: Expected `Future[Mapping[tuple[str, str], Mapping[bool, Sequence[Future[Mapping[str, Any]]]]]]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:706:17: Argument to this function is incorrect: Expected `Future[Unknown]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:707:17: Argument to this function is incorrect: Expected `Future[dict[Unknown, Unknown]]`, found `Task[_T] | None` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:718:17: Argument to this function is incorrect: Expected `Future[Mapping[str, Sequence[Future[dict[Unknown, Unknown]]]]]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:808:72: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:1177:9: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/instance/kubernetes.py:1233:17: Argument to this function is incorrect: Expected `Future[Unknown]`, found `Task[_T]` | |
+ error[lint:invalid-argument-type] paasta_tools/kubernetes/bin/kubernetes_remove_evicted_pods.py:135:37: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] paasta_tools/kubernetes/bin/kubernetes_remove_evicted_pods.py:148:12: Return type does not match returned value: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes/bin/kubernetes_remove_evicted_pods.py:148:12: Return type does not match returned value: Expected `Mapping[str, Sequence[@Todo(unsupported nested subscript in type[X])]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-assignment] paasta_tools/kubernetes/bin/paasta_cleanup_remote_run_resources.py:55:5: Object of type `tuple[tuple[Unknown, def get_remote_run_service_accounts(kube_client: KubeClient, namespace: str, user: str = Literal[""]) -> Sequence[Unknown], datetime], tuple[Unknown, def get_remote_run_roles(kube_client: KubeClient, namespace: str) -> list[Unknown], datetime], tuple[Unknown, def get_remote_run_role_bindings(kube_client: KubeClient, namespace: str) -> list[Unknown], datetime], tuple[Unknown, def get_remote_run_jobs(kube_client: KubeClient, namespace: str) -> list[Unknown], datetime]]` is not assignable to `Sequence[tuple[Unknown, Unknown, datetime]]` | |
+ error[lint:invalid-argument-type] paasta_tools/kubernetes/bin/paasta_cleanup_stale_nodes.py:156:52: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:245:21: Argument to this function is incorrect: Expected `KubernetesDeploymentConfig`, found `InstanceConfig_T` | |
+ error[lint:invalid-argument-type] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:245:21: Argument to this function is incorrect: Expected `KubernetesDeploymentConfig`, found `InstanceConfig_T` | |
+ error[lint:invalid-argument-type] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:245:21: Argument to this function is incorrect: Expected `KubernetesDeploymentConfig`, found `InstanceConfig_T` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:502:37: Type `InstanceConfig_T` has no attribute `get_datastore_credentials` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:547:32: Type `InstanceConfig_T` has no attribute `get_datastore_credentials_signature_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:548:29: Type `InstanceConfig_T` has no attribute `get_datastore_credentials_secret_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:580:27: Type `InstanceConfig_T` has no attribute `get_crypto_keys_from_config` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:599:63: Type `InstanceConfig_T` has no attribute `get_sanitised_deployment_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:612:32: Type `InstanceConfig_T` has no attribute `get_crypto_secret_signature_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:615:29: Type `InstanceConfig_T` has no attribute `get_crypto_secret_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:665:32: Type `InstanceConfig_T` has no attribute `get_boto_secret_signature_name` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes/bin/paasta_secrets_sync.py:666:29: Type `InstanceConfig_T` has no attribute `get_boto_secret_name` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:1070:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:1285:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:1491:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:1614:16: Return type does not match returned value: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:2752:12: Return type does not match returned value: Expected `Sequence[KubernetesServiceRegistration]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:3255:12: Return type does not match returned value: Expected `Sequence[KubeCustomResource]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:3380:12: Return type does not match returned value: Expected `Sequence[KubeDeployment]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] paasta_tools/kubernetes_tools.py:3471:5: Object of type `list[Unknown]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:unresolved-attribute] paasta_tools/kubernetes_tools.py:3549:31: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:invalid-assignment] paasta_tools/kubernetes_tools.py:3619:5: Object of type `list[Unknown]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/kubernetes_tools.py:4054:12: Return type does not match returned value: Expected `Sequence[CustomResourceDefinition]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/list_kubernetes_service_instances.py:107:24: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/long_running_service_tools.py:611:12: Return type does not match returned value: Expected `Sequence[tuple[str, ServiceNamespaceConfig]]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/long_running_service_tools.py:637:12: Return type does not match returned value: Expected `Sequence[tuple[str, ServiceNamespaceConfig]]`, found `list[Unknown]` | |
+ error[lint:unresolved-attribute] paasta_tools/long_running_service_tools.py:665:40: Type `InstanceConfig_T` has no attribute `get_registrations` | |
+ error[lint:unresolved-attribute] paasta_tools/long_running_service_tools.py:666:31: Type `InstanceConfig_T` has no attribute `get_instances` | |
- error[lint:invalid-assignment] paasta_tools/mesos_tools.py:431:5: Object of type `dict[Unknown, Unknown]` is not assignable to `MutableMapping[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] paasta_tools/mesos_tools.py:431:5: Object of type `dict[Unknown, Unknown]` is not assignable to `MutableMapping[str, Sequence[str]]` | |
- error[lint:invalid-return-type] paasta_tools/mesos_tools.py:443:20: Return type does not match returned value: Expected `MutableMapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/mesos_tools.py:443:20: Return type does not match returned value: Expected `MutableMapping[str, Sequence[str]]`, found `dict[Unknown, Unknown]` | |
- error[lint:invalid-return-type] paasta_tools/mesos_tools.py:469:16: Return type does not match returned value: Expected `MutableMapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/mesos_tools.py:469:16: Return type does not match returned value: Expected `MutableMapping[str, Sequence[str]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/mesos_tools.py:612:13: Argument to this function is incorrect: Expected `Sequence[Task]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/mesos_tools.py:614:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/mesos_tools.py:638:13: Argument to this function is incorrect: Expected `Sequence[Task]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/mesos_tools.py:640:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] paasta_tools/mesos_tools.py:851:5: Default value of type `None` is not assignable to annotated parameter type `Sequence[dict[Unknown, Unknown]]` | |
+ error[lint:invalid-assignment] paasta_tools/metrics/metastatus_lib.py:617:9: Object of type `list[SupportsRichComparisonT]` is not assignable to `Sequence[_GenericNodeT]` | |
+ error[lint:invalid-parameter-default] paasta_tools/metrics/metastatus_lib.py:793:5: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[@Todo(Inference of subscript on special form)]` | |
+ error[lint:invalid-assignment] paasta_tools/metrics/metastatus_lib.py:811:5: Object of type `Sequence[_GenericNodeT]` is not assignable to `Sequence[_SlaveT]` | |
+ error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:817:63: Argument to this function is incorrect: Expected `Sequence[_GenericNodeT]`, found `Sequence[_SlaveT]` | |
+ error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:821:13: Argument to this function is incorrect: Expected `Sequence[_SlaveT]`, found `Sequence[_GenericNodeT]` | |
+ error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:821:58: Argument to this function is incorrect: Expected `Sequence[_SlaveT]`, found `Sequence[_GenericNodeT]` | |
+ error[lint:invalid-parameter-default] paasta_tools/metrics/metastatus_lib.py:832:5: Default value of type `list[Unknown]` is not assignable to annotated parameter type `Sequence[@Todo(Inference of subscript on special form)]` | |
- error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:865:20: Argument to this function is incorrect: Expected `Mapping[str, @Todo(specialized non-generic class)]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:865:20: Argument to this function is incorrect: Expected `Mapping[str, Sequence[Unknown]]`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/metrics/metastatus_lib.py:906:12: Return type does not match returned value: Expected `Sequence[HealthCheckResult]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/metrics/metastatus_lib.py:926:12: Return type does not match returned value: Expected `Sequence[HealthCheckResult]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] paasta_tools/metrics/metastatus_lib.py:943:12: Return type does not match returned value: Expected `Sequence[HealthCheckResult]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/metrics/metastatus_lib.py:975:35: Argument to this function is incorrect: Expected `Sequence[(...) -> HealthCheckResult]`, found `list[Unknown]` | |
- error[lint:invalid-parameter-default] paasta_tools/monkrelaycluster_tools.py:62:9: Default value of type `None` is not assignable to annotated parameter type `list` | |
+ error[lint:invalid-parameter-default] paasta_tools/monkrelaycluster_tools.py:62:9: Default value of type `None` is not assignable to annotated parameter type `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:183:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:183:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:183:60: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:184:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:184:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:184:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:185:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:185:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/prune_completed_pods.py:185:56: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/secret_tools.py:95:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] paasta_tools/setup_istio_mesh.py:287:6: Function can implicitly return `None`, which is not assignable to return type `Iterator` | |
+ error[lint:invalid-return-type] paasta_tools/setup_istio_mesh.py:287:6: Function can implicitly return `None`, which is not assignable to return type `Iterator[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/setup_istio_mesh.py:308:9: Argument to this function is incorrect: Expected `AbstractSet[Unknown]`, found `KeysView[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/setup_istio_mesh.py:315:9: Argument to this function is incorrect: Expected `AbstractSet[Unknown]`, found `KeysView[Unknown]` | |
+ error[lint:invalid-argument-type] paasta_tools/setup_prometheus_adapter_config.py:859:25: Argument to this function is incorrect: Expected `KubernetesDeploymentConfig`, found `InstanceConfig_T` | |
+ error[lint:invalid-return-type] paasta_tools/smartstack_tools.py:560:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
- warning[lint:redundant-cast] paasta_tools/spark_tools.py:120:41: Value is already of type `list` | |
+ warning[lint:redundant-cast] paasta_tools/spark_tools.py:120:41: Value is already of type `list[Unknown]` | |
- error[lint:invalid-return-type] paasta_tools/utils.py:1087:16: Return type does not match returned value: Expected `list`, found `None` | |
+ error[lint:invalid-return-type] paasta_tools/utils.py:1087:16: Return type does not match returned value: Expected `list[Unknown]`, found `None` | |
+ error[lint:not-iterable] paasta_tools/utils.py:2106:24: Object of type `_T_co` is not iterable | |
- error[lint:invalid-return-type] paasta_tools/utils.py:2977:12: Return type does not match returned value: Expected `tuple[str, str, str, str]`, found `tuple[@Todo(specialized non-generic class), @Todo(specialized non-generic class), None | @Todo(specialized non-generic class), None | @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-return-type] paasta_tools/utils.py:2977:12: Return type does not match returned value: Expected `tuple[str, str, str, str]`, found `tuple[Unknown, Unknown, None | Unknown, None | Unknown]` | |
+ error[lint:invalid-parameter-default] paasta_tools/utils.py:3135:5: Default value of type `None` is not assignable to annotated parameter type `Iterable[str]` | |
- error[lint:invalid-return-type] paasta_tools/utils.py:3699:12: Return type does not match returned value: Expected `tuple[str, str, str | None]`, found `tuple[None | @Todo(specialized non-generic class), None | @Todo(specialized non-generic class), None | @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-return-type] paasta_tools/utils.py:3699:12: Return type does not match returned value: Expected `tuple[str, str, str | None]`, found `tuple[None | Unknown, None | Unknown, None | @Todo(map_with_boundness: intersections with negative contributions)]` | |
+ error[lint:invalid-return-type] paasta_tools/utils.py:4143:12: Return type does not match returned value: Expected `Sequence[str]`, found `list[SupportsRichComparisonT]` | |
- Found 1062 diagnostics | |
+ Found 1196 diagnostics | |
PyGithub (https://github.com/PyGithub/PyGithub) | |
+ error[lint:invalid-return-type] github/PaginatedList.py:90:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[T]` | |
+ error[lint:unsupported-operator] github/Requester.py:748:50: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-return-type] github/RequiredPullRequestReviews.py:217:16: Return type does not match returned value: Expected `list[Team]`, found `Unknown | None` | |
+ error[lint:invalid-return-type] github/RequiredPullRequestReviews.py:222:16: Return type does not match returned value: Expected `list[NamedUser]`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] tests/Authentication.py:303:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/Authentication.py:318:13: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
- Found 327 diagnostics | |
+ Found 333 diagnostics | |
operator (https://github.com/canonical/operator) | |
+ error[lint:invalid-argument-type] ops/_private/harness.py:495:24: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] ops/_private/harness.py:533:24: Argument to this function is incorrect: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] ops/_private/harness.py:3534:13: Object of type `list[SupportsRichComparisonT]` is not assignable to `list[str] | None` | |
+ error[lint:no-matching-overload] ops/_private/harness.py:3535:21: No overload of function `sorted` matches arguments | |
+ warning[lint:possibly-unbound-attribute] ops/_private/harness.py:4018:23: Attribute `value` on type `Unknown | str` is possibly unbound | |
+ error[lint:invalid-argument-type] ops/lib/__init__.py:198:41: Argument to this function is incorrect: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] ops/lib/__init__.py:199:33: Argument to this function is incorrect: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] ops/lib/__init__.py:199:71: Argument to this function is incorrect: Expected `list[str]`, found `list[SupportsRichComparisonT]` | |
- Found 247 diagnostics | |
+ Found 255 diagnostics | |
dedupe (https://github.com/dedupeio/dedupe) | |
+ error[lint:invalid-return-type] dedupe/blocking.py:208:12: Return type does not match returned value: Expected `Sequence[tuple[str, Index, (Any, /) -> Any]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] dedupe/canonical.py:75:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-return-type] dedupe/clustering.py:20:68: Function can implicitly return `None`, which is not assignable to return type `Generator[Unknown, None, None]` | |
+ error[lint:invalid-argument-type] dedupe/clustering.py:105:33: Argument to this function is incorrect: Expected `None | Sequence[Unknown]`, found `list[Unknown]` | |
- error[lint:invalid-assignment] dedupe/clustering.py:241:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] dedupe/clustering.py:241:13: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[int, list[int]]` | |
+ error[lint:invalid-argument-type] dedupe/clustering.py:249:42: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[int]` | |
- error[lint:invalid-assignment] dedupe/convenience.py:246:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, tuple[@Todo(specialized non-generic class), @Todo(specialized non-generic class)]]` | |
+ error[lint:invalid-assignment] dedupe/convenience.py:246:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, tuple[list[Unknown], list[Unknown]]]` | |
- error[lint:invalid-assignment] dedupe/convenience.py:319:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, @Todo(specialized non-generic class)]` | |
+ error[lint:invalid-assignment] dedupe/convenience.py:319:5: Object of type `defaultdict[Unknown, Unknown]` is not assignable to `dict[str, list[Unknown]]` | |
+ error[lint:invalid-argument-type] dedupe/convenience.py:365:28: Argument to this function is incorrect: Expected `Sequence[Unknown | Mapping[str, Any]]`, found `list[Unknown | Mapping[str, Any]]` | |
+ error[lint:invalid-return-type] dedupe/core.py:221:6: Function can implicitly return `None`, which is not assignable to return type `Generator[Unknown, None, None]` | |
+ error[lint:invalid-return-type] dedupe/core.py:224:9: Return type does not match returned value: Expected `Generator[Unknown, None, None]`, found `None` | |
+ error[lint:unresolved-attribute] dedupe/datamodel.py:193:64: Type `Variable` has no attribute `interaction_fields` | |
+ error[lint:invalid-argument-type] dedupe/predicate_functions.py:95:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[str]` | |
+ error[lint:invalid-argument-type] dedupe/predicate_functions.py:99:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[str]` | |
+ error[lint:invalid-argument-type] dedupe/predicate_functions.py:179:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-argument-type] dedupe/predicate_functions.py:183:25: Argument to this function is incorrect: Expected `Sequence[Any]`, found `list[SupportsRichComparisonT]` | |
+ error[lint:invalid-return-type] dedupe/predicates.py:292:16: Return type does not match returned value: Expected `Sequence[str]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-return-type] dedupe/predicates.py:302:16: Return type does not match returned value: Expected `Sequence[str]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] dedupe/training.py:291:31: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] dedupe/variables/base.py:52:5: Object of type `list[Unknown]` is not assignable to `Sequence[int | float]` | |
+ error[lint:invalid-assignment] dedupe/variables/base.py:53:5: Object of type `list[Unknown]` is not assignable to `Sequence[type[IndexPredicate]]` | |
+ error[lint:invalid-assignment] dedupe/variables/base.py:54:5: Object of type `tuple[()]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-assignment] dedupe/variables/string.py:37:5: Object of type `tuple[()]` is not assignable to `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] dedupe/variables/string.py:47:13: Argument to this function is incorrect: Expected `Sequence[int | float]`, found `tuple[Literal[1], Literal[2], Literal[3], Literal[4]]` | |
+ error[lint:invalid-assignment] dedupe/variables/string.py:64:5: Object of type `list[Unknown]` is not assignable to `Sequence[type[IndexPredicate]]` | |
- Found 120 diagnostics | |
+ Found 142 diagnostics | |
schema_salad (https://github.com/common-workflow-language/schema_salad) | |
+ error[lint:invalid-argument-type] schema_salad/avro/schema.py:738:54: Argument to this function is incorrect: Expected `list[dict[str, @Todo(Inference of subscript on special form)]]`, found `list[Unknown | dict[str, @Todo(Inference of subscript on special form)]]` | |
+ error[lint:invalid-argument-type] schema_salad/codegen.py:39:38: Argument to this function is incorrect: Expected `list[dict[str, Any]]`, found `list[dict[str, str]]` | |
+ error[lint:unsupported-operator] schema_salad/codegen.py:52:23: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-argument-type] schema_salad/codegen.py:146:17: Argument to this function is incorrect: Expected `MutableSequence[str]`, found `list[Unknown]` | |
- error[lint:unsupported-operator] schema_salad/jsonld_context.py:210:16: Operator `in` is not supported for types `@Todo(specialized non-generic class)` and `int`, in comparing `@Todo(specialized non-generic class)` with `(CommentedMap & MutableMapping[Unknown, Unknown]) | (int & MutableMapping[Unknown, Unknown]) | (float & MutableMapping[Unknown, Unknown]) | (str & MutableMapping[Unknown, Unknown]) | (CommentedSeq & MutableMapping[Unknown, Unknown])` | |
+ error[lint:unsupported-operator] schema_salad/jsonld_context.py:210:16: Operator `in` is not supported for types `str` and `int`, in comparing `str` with `(CommentedMap & MutableMapping[Unknown, Unknown]) | (int & MutableMapping[Unknown, Unknown]) | (float & MutableMapping[Unknown, Unknown]) | (str & MutableMapping[Unknown, Unknown]) | (CommentedSeq & MutableMapping[Unknown, Unknown])` | |
+ error[lint:no-matching-overload] schema_salad/jsonld_context.py:234:24: No overload of function `urldefrag` matches arguments | |
+ error[lint:no-matching-overload] schema_salad/jsonld_context.py:234:24: No overload of function `urldefrag` matches arguments | |
+ error[lint:no-matching-overload] schema_salad/jsonld_context.py:234:24: No overload of function `urldefrag` matches arguments | |
+ error[lint:no-matching-overload] schema_salad/main.py:234:12: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-argument-type] schema_salad/main.py:330:13: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:unsupported-operator] schema_salad/makedoc.py:510:17: Operator `+=` is unsupported between objects of type `str` and `_T` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:485:42: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:500:37: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:508:79: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:512:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:555:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:743:37: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:757:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:765:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:773:87: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:777:65: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:790:25: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:793:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:863:57: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1242:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1255:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1298:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1311:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1318:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1346:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1359:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1387:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1502:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1515:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1522:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1550:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1563:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1591:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1714:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1727:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1743:85: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1771:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1784:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1791:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1819:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1832:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1860:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1947:83: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1975:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1988:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:1995:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2023:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2036:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2064:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2146:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2174:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2187:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2194:84: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2222:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2235:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2263:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2345:83: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2373:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2386:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2393:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2421:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2434:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2462:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2621:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2634:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2668:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2681:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2715:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2728:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2762:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2775:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2809:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2822:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2856:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2869:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2903:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2916:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2950:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2963:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:2997:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3010:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3044:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3057:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3091:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3104:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3132:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3291:92: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3319:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3332:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3339:90: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3367:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3380:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3408:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3555:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3568:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3611:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3624:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3631:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3659:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3672:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3706:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3719:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3753:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3766:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3794:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3976:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:3989:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4032:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4045:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4079:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4092:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4099:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4127:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4140:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4174:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4187:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4221:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4234:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4268:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4281:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4315:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4328:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4362:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4375:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4409:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4422:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4456:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4469:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4503:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4516:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4550:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4563:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4591:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4831:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4844:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4887:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4900:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4907:85: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4935:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4948:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4955:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4983:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:4996:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5030:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5043:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5077:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5090:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5124:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5137:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5171:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5184:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5218:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5231:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5265:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5278:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5312:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5325:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5353:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5570:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5583:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5626:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5639:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5646:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5674:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5687:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5694:84: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5722:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5735:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5769:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5782:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5816:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5829:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5863:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5876:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5910:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5923:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5957:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:5970:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6004:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6017:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6045:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6253:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6266:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6309:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6322:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6329:83: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6357:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6370:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6377:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6405:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6418:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6452:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6465:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6499:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6512:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6546:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6559:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6593:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6606:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6640:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6653:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6681:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6873:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6886:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6929:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6942:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6976:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:6989:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7023:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7036:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7070:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7083:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7117:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7130:33: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7137:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7165:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7178:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7206:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7348:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["null"], Literal["boolean"], Literal["int"], Literal["long"], Literal["float"], Literal["double"], Literal["string"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7373:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["Any"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7393:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _PrimitiveLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7401:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_EnumLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _PrimitiveLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7415:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_EnumLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _PrimitiveLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7433:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7441:33: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["record"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7444:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _PrimitiveLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7455:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["enum"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7464:32: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["array"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7466:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["map"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7468:32: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["union"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7471:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _PrimitiveLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7477:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _PrimitiveLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7492:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _PrimitiveLoader, _RecordLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7499:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _AnyLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7506:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7519:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_PrimitiveLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7527:40: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["documentation"]]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7530:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/metaschema.py:7542:5: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `tuple[_RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _RecordLoader, _ArrayLoader]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:482:42: Argument to this function is incorrect: Expected `Sequence[_Loader]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:497:37: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:505:79: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:509:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:552:49: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:740:37: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:754:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:762:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:770:87: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:774:65: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:787:25: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:790:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/python_codegen_support.py:860:57: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:942:21: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:983:21: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:1093:53: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:1184:93: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:1188:94: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:1190:84: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/ref_resolver.py:1193:53: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:306:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:387:83: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:394:83: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:403:70: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:405:45: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:572:36: Argument to this function is incorrect: Argument type `dict[str, Any]` does not satisfy constraints of type variable `Avro` | |
+ error[lint:invalid-argument-type] schema_salad/schema.py:726:28: Argument to this function is incorrect: Argument type `list[dict[str, Any]]` does not satisfy constraints of type variable `Avro` | |
- error[lint:invalid-return-type] schema_salad/sourceline.py:214:12: Return type does not match returned value: Expected `int | float | str | CommentedMap | CommentedSeq | None`, found `(int & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence) | (float & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence) | (str & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence) | (MutableMapping[str, Any] & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence) | (@Todo(specialized non-generic class) & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence) | None` | |
+ error[lint:invalid-return-type] schema_salad/sourceline.py:214:12: Return type does not match returned value: Expected `int | float | str | CommentedMap | CommentedSeq | None`, found `(int & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence[Unknown]) | (float & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence[Unknown]) | (str & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence[Unknown]) | (MutableMapping[str, Any] & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence[Unknown]) | (MutableSequence[Any] & ~CommentedMap & ~MutableMapping[Unknown, Unknown] & ~MutableSequence[Unknown]) | None` | |
+ error[lint:invalid-argument-type] schema_salad/tests/matcher.py:30:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/matcher.py:31:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_codegen_errors.py:215:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_cpp_codegen.py:120:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_dlang_codegen.py:32:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_dotnet_codegen.py:79:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:304:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:304:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:304:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:304:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:304:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:325:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:325:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:325:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:325:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:325:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:352:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:352:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:352:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:352:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:352:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:374:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:374:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:374:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:374:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:374:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:396:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:396:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:396:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:396:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:396:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:422:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:422:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_errors.py:422:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:28:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:28:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:28:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:164:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:164:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:164:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:164:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:164:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:173:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:173:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:173:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:194:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:194:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:194:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:232:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:232:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:232:13: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:331:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:331:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:331:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:334:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:334:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:334:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:337:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:337:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:337:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:340:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:340:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:340:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:344:30: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:358:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:358:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:358:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:366:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:366:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:366:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:369:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:369:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:369:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:372:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:372:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:372:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:375:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:375:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:375:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:389:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:389:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:389:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:399:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:399:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:399:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:412:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:412:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:412:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:425:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:425:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:425:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:453:17: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:492:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:492:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:492:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:503:31: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:508:14: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:559:10: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `CommentedSeq` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:573:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:573:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:573:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:593:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:593:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_examples.py:593:34: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_java_codegen.py:45:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_python_codegen.py:70:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_ref_resolver.py:170:37: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_ref_resolver.py:170:37: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_ref_resolver.py:170:37: Argument to this function is incorrect: Expected `int | float | str | MutableMapping[str, Any] | MutableSequence[Any] | None`, found `dict[Unknown, Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/tests/test_typescript_codegen.py:81:9: Argument to this function is incorrect: Expected `list[dict[str, str]]`, found `list[dict[str, Any]]` | |
+ error[lint:invalid-return-type] schema_salad/utils.py:55:12: Return type does not match returned value: Expected `MutableSequence[Any]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] schema_salad/validate.py:86:9: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:231:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:303:79: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:376:29: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:446:62: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:447:53: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-argument-type] schema_salad/validate.py:474:82: Argument to this function is incorrect: Expected `Sequence[SchemaSaladException] | None`, found `list[Unknown]` | |
- Found 427 diagnostics | |
+ Found 815 diagnostics | |
rich (https://github.com/Textualize/rich) | |
+ error[lint:invalid-assignment] examples/table_movie.py:160:9: Object of type `list[Unknown]` is not assignable to attribute `row_styles` of type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] rich/_palettes.py:6:5: Argument to this function is incorrect: Expected `Sequence[tuple[int, int, int]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/_palettes.py:28:5: Argument to this function is incorrect: Expected `Sequence[tuple[int, int, int]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/_palettes.py:51:5: Argument to this function is incorrect: Expected `Sequence[tuple[int, int, int]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/_ratio.py:158:35: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/_wrap.py:64:53: Argument to this function is incorrect: Expected `str`, found `T` | |
+ error[lint:invalid-argument-type] rich/_wrap.py:66:42: Argument to this function is incorrect: Expected `Sized`, found `T` | |
+ error[lint:unsupported-operator] rich/box.py:163:20: Operator `*` is unsupported between objects of type `Unknown | Literal[" "]` and `T` | |
- error[lint:invalid-return-type] rich/console.py:491:10: Function can implicitly return `None`, which is not assignable to return type `Iterable` | |
+ error[lint:invalid-return-type] rich/console.py:491:10: Function can implicitly return `None`, which is not assignable to return type `Iterable[@Todo(Inference of subscript on special form) | Segment]` | |
+ error[lint:invalid-argument-type] rich/layout.py:113:46: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `Sequence[Layout]` | |
+ error[lint:invalid-argument-type] rich/layout.py:133:48: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `Sequence[Layout]` | |
+ error[lint:not-iterable] rich/live_render.py:110:24: Object of type `T` is not iterable | |
+ error[lint:not-iterable] rich/markdown.py:384:24: Object of type `T` is not iterable | |
+ error[lint:not-iterable] rich/markdown.py:400:24: Object of type `T` is not iterable | |
+ error[lint:invalid-argument-type] rich/panel.py:291:21: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] rich/pretty.py:67:12: Return type does not match returned value: Expected `Sequence[Attribute[Any]]`, found `Any | list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/pretty.py:538:17: Argument to this function is incorrect: Expected `Node | None`, found `T` | |
+ error[lint:not-iterable] rich/pretty.py:697:42: Object of type `T` is not iterable | |
+ error[lint:not-iterable] rich/pretty.py:749:63: Object of type `T` is not iterable | |
+ error[lint:unresolved-attribute] rich/pretty.py:788:57: Type `T` has no attribute `name` | |
+ error[lint:unresolved-attribute] rich/pretty.py:789:43: Type `T` has no attribute `name` | |
+ error[lint:not-iterable] rich/pretty.py:812:43: Object of type `T` is not iterable | |
+ error[lint:invalid-return-type] rich/progress.py:125:6: Function can implicitly return `None`, which is not assignable to return type `Iterable[ProgressType]` | |
+ error[lint:invalid-return-type] rich/progress_bar.py:128:10: Function can implicitly return `None`, which is not assignable to return type `Iterable[Segment]` | |
+ error[lint:not-iterable] rich/screen.py:52:24: Object of type `T` is not iterable | |
+ error[lint:not-iterable] rich/syntax.py:761:32: Object of type `T` is not iterable | |
+ error[lint:invalid-argument-type] rich/syntax.py:790:17: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] rich/syntax.py:793:17: Argument to this function is incorrect: Expected `Sequence[int]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] rich/table.py:122:24: Function can implicitly return `None`, which is not assignable to return type `Iterable[Unknown]` | |
+ error[lint:not-iterable] rich/table.py:685:53: Object of type `T` is not iterable | |
+ error[lint:non-subscriptable] rich/table.py:890:36: Cannot subscript object of type `T` with no `__getitem__` method | |
+ error[lint:invalid-assignment] rich/table.py:988:9: Object of type `list[Unknown]` is not assignable to attribute `row_styles` of type `Sequence[Unknown]` | |
+ error[lint:invalid-assignment] rich/table.py:995:9: Object of type `list[Unknown]` is not assignable to attribute `row_styles` of type `Sequence[Unknown]` | |
+ error[lint:invalid-assignment] rich/table.py:1002:9: Object of type `list[Unknown]` is not assignable to attribute `row_styles` of type `Sequence[Unknown]` | |
+ error[lint:invalid-argument-type] rich/terminal_theme.py:29:36: Argument to this function is incorrect: Expected `Sequence[tuple[int, int, int]]`, found `list[_T]` | |
+ error[lint:invalid-return-type] rich/text.py:691:10: Function can implicitly return `None`, which is not assignable to return type `Iterable[Segment]` | |
+ error[lint:not-iterable] rich/tree.py:157:32: Object of type `T` is not iterable | |
- error[lint:invalid-argument-type] tests/test_console.py:225:28: Argument to this function is incorrect: Expected `str | None`, found `list` | |
+ error[lint:invalid-argument-type] tests/test_console.py:225:28: Argument to this function is incorrect: Expected `str | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:26:29: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:31:60: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:37:9: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:46:9: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:52:9: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_control.py:61:9: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
- error[lint:invalid-argument-type] tests/test_highlighter.py:19:21: Argument to this function is incorrect: Expected `str | Text`, found `list` | |
+ error[lint:invalid-argument-type] tests/test_highlighter.py:19:21: Argument to this function is incorrect: Expected `str | Text`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_measure.py:24:58: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `Literal[""]` | |
+ error[lint:invalid-argument-type] tests/test_measure.py:26:51: Argument to this function is incorrect: Expected `Sequence[Unknown]`, found `Literal["hello"]` | |
+ error[lint:unresolved-attribute] tests/test_progress.py:616:24: Type `BinaryIO` has no attribute `handle` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:29:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:30:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:31:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:32:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:33:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:38:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:44:14: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:46:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:52:13: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_ratio.py:54:31: Argument to this function is incorrect: Expected `Sequence[Edge]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_segment.py:14:35: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_segment.py:94:54: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `tuple[tuple[@Todo(Attribute access on enum classes), Literal[0]]]` | |
+ error[lint:invalid-argument-type] tests/test_segment.py:97:30: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `tuple[tuple[@Todo(Attribute access on enum classes), Literal[0]]]` | |
+ error[lint:invalid-argument-type] tests/test_segment.py:124:45: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_segment.py:125:45: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] tests/test_table.py:47:5: Object of type `list[Unknown]` is not assignable to attribute `row_styles` of type `Sequence[Unknown]` | |
+ error[lint:no-matching-overload] tests/test_tools.py:8:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:9:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:10:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:11:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:17:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:18:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:19:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:20:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:26:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:27:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:28:12: No overload of function `next` matches arguments | |
+ error[lint:no-matching-overload] tests/test_tools.py:29:12: No overload of function `next` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:52:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:62:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:70:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:89:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:105:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:113:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:121:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:129:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] tests/test_windows_renderer.py:137:33: Argument to this function is incorrect: Expected `Sequence[@Todo(Inference of subscript on special form)] | None`, found `list[Unknown]` | |
+ error[lint:not-iterable] tools/make_terminal_widths.py:29:33: Object of type `ProgressType` is not iterable | |
+ error[lint:invalid-argument-type] tools/make_terminal_widths.py:65:25: Argument to this function is incorrect: Expected `SupportsIndex`, found `Unknown | ProgressType` | |
- Found 494 diagnostics | |
+ Found 578 diagnostics | |
speedrun.com_global_scoreboard_webapp (https://github.com/Avasam/speedrun.com_global_scoreboard_webapp) | |
+ error[lint:invalid-argument-type] backend/api/api_wrappers.py:34:72: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] backend/models/tournament_scheduler_models.py:43:13: Default value of type `ellipsis` is not assignable to annotated parameter type `list[TimeSlot]` | |
+ error[lint:invalid-parameter-default] backend/models/tournament_scheduler_models.py:145:13: Default value of type `ellipsis` is not assignable to annotated parameter type `list[Registration]` | |
+ error[lint:invalid-parameter-default] backend/models/tournament_scheduler_models.py:217:13: Default value of type `ellipsis` is not assignable to annotated parameter type `list[Participant]` | |
- Found 167 diagnostics | |
+ Found 171 diagnostics | |
werkzeug (https://github.com/pallets/werkzeug) | |
+ error[lint:invalid-argument-type] src/werkzeug/_reloader.py:158:19: Argument to this function is incorrect: Expected `Mapping[str, dict[str, Any]]`, found `dict[str, Any]` | |
+ error[lint:invalid-return-type] src/werkzeug/datastructures/accept.py:205:12: Return type does not match returned value: Expected `list[str]`, found `Unknown | list[str | @Todo(Support for `typing.TypeAlias`)]` | |
+ error[lint:invalid-return-type] src/werkzeug/datastructures/accept.py:277:12: Return type does not match returned value: Expected `list[str]`, found `Unknown | list[str | @Todo(Support for `typing.TypeAlias`)]` | |
+ error[lint:no-matching-overload] src/werkzeug/datastructures/file_storage.py:126:19: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-assignment] src/werkzeug/datastructures/file_storage.py:129:13: Object of type `TextIOWrapper[_WrappedBuffer]` is not assignable to `str | PathLike[str] | IO[bytes]` | |
+ error[lint:invalid-argument-type] src/werkzeug/datastructures/file_storage.py:133:38: Argument to this function is incorrect: Expected `SupportsWrite[AnyStr]`, found `PathLike[str] | IO[bytes] | (Unknown & ~str) | str` | |
+ warning[lint:possibly-unbound-attribute] src/werkzeug/datastructures/file_storage.py:136:17: Attribute `close` on type `PathLike[str] | IO[bytes] | (Unknown & ~str) | str` is possibly unbound | |
+ error[lint:no-matching-overload] src/werkzeug/datastructures/file_storage.py:194:28: No overload of function `fspath` matches arguments | |
- warning[lint:unused-ignore-comment] src/werkzeug/datastructures/headers.py:485:70: Unused blanket `type: ignore` directive | |
- error[lint:not-iterable] src/werkzeug/datastructures/structures.py:796:23: Object of type `_VT` is not iterable | |
- error[lint:non-subscriptable] src/werkzeug/datastructures/structures.py:799:21: Cannot subscript object of type `_VT` with no `__getitem__` method | |
- error[lint:not-iterable] src/werkzeug/datastructures/structures.py:810:23: Object of type `_VT` is not iterable | |
- error[lint:not-iterable] src/werkzeug/datastructures/structures.py:813:39: Object of type `_VT` is not iterable | |
+ error[lint:invalid-return-type] src/werkzeug/debug/__init__.py:334:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[bytes]` | |
- error[lint:invalid-assignment] src/werkzeug/formparser.py:376:21: Object of type `bound method list.append(object: _T, /) -> None` is not assignable to `(bytes, /) -> Any` | |
- warning[lint:unused-ignore-comment] src/werkzeug/local.py:218:41: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/werkzeug/http.py:846:28: Argument to this function is incorrect: Expected `Sequence[tuple[int, int | None]]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] src/werkzeug/routing/exceptions.py:95:23: No overload of bound method `__init__` matches arguments | |
- error[lint:unsupported-operator] src/werkzeug/routing/exceptions.py:102:50: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | (@Todo(specialized non-generic class) & None) | None` | |
+ error[lint:unsupported-operator] src/werkzeug/routing/exceptions.py:102:50: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` | |
- warning[lint:unused-ignore-comment] src/werkzeug/routing/map.py:691:37: Unused blanket `type: ignore` directive | |
+ error[lint:unsupported-operator] src/werkzeug/routing/matcher.py:92:53: Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` | |
+ error[lint:unsupported-operator] src/werkzeug/routing/matcher.py:105:53: Operator `in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` | |
+ error[lint:unsupported-operator] src/werkzeug/routing/matcher.py:159:53: Operator `not in` is not supported for types `Unknown` and `None`, in comparing `Unknown` with `Unknown | None` | |
+ error[lint:no-matching-overload] src/werkzeug/routing/matcher.py:195:17: No overload of bound method `update` matches arguments | |
+ error[lint:not-iterable] src/werkzeug/routing/rules.py:804:37: Object of type `_T` is not iterable | |
- warning[lint:unused-ignore-comment] src/werkzeug/routing/rules.py:829:34: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/werkzeug/routing/rules.py:831:48: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/werkzeug/routing/rules.py:833:38: Unused blanket `type: ignore` directive | |
- warning[lint:unused-ignore-comment] src/werkzeug/routing/rules.py:835:56: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-assignment] src/werkzeug/sansio/response.py:620:13: Object of type `def on_update(value: WWWAuthenticate) -> None` is not assignable to attribute `_on_update` on type `(WWWAuthenticate & ~AlwaysFalsy & ~list[Unknown]) | (list[WWWAuthenticate] & ~AlwaysFalsy & ~list[Unknown])` | |
- warning[lint:unused-ignore-comment] src/werkzeug/test.py:1434:74: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-return-type] src/werkzeug/utils.py:114:16: Return type does not match returned value: Expected `_T`, found `@Todo(map_with_boundness: intersections with negative contributions) | _Missing` | |
- error[lint:invalid-argument-type] src/werkzeug/utils.py:486:35: Argument to this function is incorrect: Expected `IO[bytes]`, found `(@Todo(specialized non-generic class) & ~PathLike & ~str & ~None) | IO[bytes] | None` | |
+ error[lint:invalid-argument-type] src/werkzeug/utils.py:486:35: Argument to this function is incorrect: Expected `IO[bytes]`, found `IO[bytes] | None` | |
+ error[lint:no-matching-overload] src/werkzeug/utils.py:564:26: No overload of function `fspath` matches arguments | |
+ error[lint:no-matching-overload] src/werkzeug/utils.py:564:48: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] src/werkzeug/utils.py:604:63: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:unresolved-attribute] src/werkzeug/wrappers/request.py:310:13: Type `V` has no attribute `close` | |
+ error[lint:no-matching-overload] src/werkzeug/wsgi.py:246:25: No overload of bound method `__init__` matches arguments | |
+ error[lint:unresolved-attribute] src/werkzeug/wsgi.py:370:59: Type `Iterable[bytes]` has no attribute `seekable` | |
+ error[lint:invalid-argument-type] tests/middleware/test_proxy_fix.py:14:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["kwargs"], Literal["base"], Literal["url_root"]]` | |
+ error[lint:invalid-argument-type] tests/middleware/test_shared_data.py:45:26: Argument to this function is incorrect: Argument type `Iterable[bytes]` does not satisfy upper bound of type variable `_SupportsCloseT` | |
+ error[lint:invalid-argument-type] tests/middleware/test_shared_data.py:54:22: Argument to this function is incorrect: Argument type `Iterable[bytes]` does not satisfy upper bound of type variable `_SupportsCloseT` | |
+ error[lint:invalid-argument-type] tests/sansio/test_utils.py:10:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["scheme"], Literal["host_header"], Literal["server"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/sansio/test_utils.py:41:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["http_content_length"], Literal["http_transfer_encoding"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:1146:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["values"], Literal["matches"], Literal["default"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:1191:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["values"], Literal["matches"], Literal["default"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_datastructures.py:1289:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_exceptions.py:124:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["cls"], Literal["value"], Literal["expect"]]` | |
+ error[lint:unsupported-operator] tests/test_exceptions.py:143:63: Operator `>=` is not supported for types `None` and `int`, in comparing `int | None` with `Literal[400]` | |
+ error[lint:invalid-argument-type] tests/test_formparser.py:178:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["no_spooled"], Literal["size"]]` | |
+ error[lint:no-matching-overload] tests/test_formparser.py:211:26: No overload of function `dirname` matches arguments | |
+ error[lint:no-matching-overload] tests/test_formparser.py:289:26: No overload of function `dirname` matches arguments | |
+ error[lint:invalid-argument-type] tests/test_http.py:99:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:111:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:347:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:360:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:576:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["samesite"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:732:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_http.py:763:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:133:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["path"], Literal["expected"]]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:515:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["base"], Literal["name"]]` | |
- warning[lint:possibly-unbound-attribute] tests/test_routing.py:601:5: Attribute `add` on type `Unknown | (@Todo(specialized non-generic class) & None) | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/test_routing.py:601:5: Attribute `add` on type `Unknown | None` is possibly unbound | |
- warning[lint:possibly-unbound-attribute] tests/test_routing.py:603:5: Attribute `discard` on type `Unknown | (@Todo(specialized non-generic class) & None) | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] tests/test_routing.py:603:5: Attribute `discard` on type `Unknown | None` is possibly unbound | |
+ error[lint:invalid-argument-type] tests/test_routing.py:857:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["endpoint"], Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:886:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["endpoint"], Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:918:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_routing.py:941:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_security.py:50:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["path"], Literal["expect"]]` | |
+ error[lint:invalid-assignment] tests/test_security.py:66:5: Object of type `Literal["*"]` is not assignable to attribute `_os_alt_seps` of type `list[str]` | |
+ error[lint:invalid-argument-type] tests/test_send_file.py:76:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["as_attachment"], Literal["value"]]` | |
+ error[lint:invalid-argument-type] tests/test_send_file.py:98:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["name"], Literal["ascii"], Literal["utf8"]]` | |
+ error[lint:invalid-argument-type] tests/test_send_file.py:143:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["value"], Literal["public"]]` | |
+ error[lint:invalid-argument-type] tests/test_send_file.py:177:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["directory"], Literal["path"]]` | |
+ error[lint:invalid-argument-type] tests/test_test.py:438:36: Argument to this function is incorrect: Expected `str | PathLike[str] | IO[bytes]`, found `SpecialInput` | |
+ error[lint:invalid-argument-type] tests/test_test.py:482:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["code"], Literal["keep"]]` | |
+ error[lint:unresolved-attribute] tests/test_test.py:705:13: Type `Iterable[bytes]` has no attribute `close` | |
+ error[lint:no-matching-overload] tests/test_test.py:757:12: No overload of function `next` matches arguments | |
+ error[lint:unresolved-attribute] tests/test_test.py:759:5: Type `Iterable[bytes]` has no attribute `close` | |
+ error[lint:invalid-argument-type] tests/test_utils.py:19:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["url"], Literal["code"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_utils.py:253:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["path"], Literal["base_url"], Literal["absolute_location"]]` | |
+ error[lint:invalid-argument-type] tests/test_wrappers.py:307:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["status_code"], Literal["expected_status"]]` | |
+ error[lint:invalid-argument-type] tests/test_wrappers.py:323:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["status"], Literal["expected_status_code"], Literal["expected_status"]]` | |
+ error[lint:invalid-argument-type] tests/test_wrappers.py:1155:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["auto"], Literal["location"], Literal["expect"]]` | |
+ error[lint:invalid-argument-type] tests/test_wsgi.py:23:5: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Literal["environ"], Literal["expect"]]` | |
- Found 607 diagnostics | |
+ Found 661 diagnostics | |
aiortc (https://github.com/aiortc/aiortc) | |
- error[lint:invalid-return-type] src/aiortc/codecs/g711.py:65:20: Return type does not match returned value: Expected `tuple[@Todo(specialized non-generic class), int]`, found `tuple[list, None]` | |
+ error[lint:invalid-return-type] src/aiortc/codecs/g711.py:65:20: Return type does not match returned value: Expected `tuple[list[bytes], int]`, found `tuple[list[Unknown], None]` | |
+ error[lint:invalid-argument-type] src/aiortc/codecs/h264.py:94:40: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/aiortc/codecs/h264.py:94:40: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/aiortc/codecs/h264.py:94:40: Argument to this function is incorrect: Expected `Sequence[T]`, found `list[Unknown]` | |
+ error[lint:unsupported-operator] src/aiortc/codecs/h264.py:95:17: Operator `-=` is unsupported between objects of type `T` and `Unknown | Literal[2]` | |
+ error[lint:invalid-return-type] src/aiortc/codecs/h264.py:249:10: Function can implicitly return `None`, which is not assignable to return type `Iterator[bytes]` | |
- error[lint:invalid-return-type] src/aiortc/codecs/opus.py:73:20: Return type does not match returned value: Expected `tuple[@Todo(specialized non-generic class), int]`, found `tuple[list, None]` | |
+ error[lint:invalid-return-type] src/aiortc/codecs/opus.py:73:20: Return type does not match returned value: Expected `tuple[list[bytes], int]`, found `tuple[list[Unknown], None]` | |
- error[lint:invalid-assignment] src/aiortc/rtcpeerconnection.py:170:9: Object of type `@Todo(specialized non-generic class)` is not assignable to attribute `fingerprints` on type `RTCDtlsParameters | None` | |
+ error[lint:invalid-assignment] src/aiortc/rtcpeerconnection.py:170:9: Object of type `list[RTCDtlsFingerprint] | @Todo(instance attribute on class with dynamic base)` is not assignable to attribute `fingerprints` on type `RTCDtlsParameters | None` | |
+ error[lint:invalid-argument-type] src/aiortc/rtcpeerconnection.py:1156:46: Argument to this function is incorrect: Expected `int`, found `int | None` | |
+ warning[lint:possibly-unbound-attribute] src/aiortc/rtcpeerconnection.py:1281:20: Attribute `usernameFragment` on type `RTCIceParameters | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/aiortc/rtcpeerconnection.py:1281:54: Attribute `password` on type `RTCIceParameters | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/aiortc/rtcpeerconnection.py:1285:63: Attribute `role` on type `RTCDtlsParameters | None` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/aiortc/rtcrtpreceiver.py:381:37: Attribute `ssrc` on type `RTCRtpRtxParameters | None` is possibly unbound | |
- Found 129 diagnostics | |
+ Found 139 diagnostics | |
arviz (https://github.com/arviz-devs/arviz) | |
+ error[lint:invalid-return-type] arviz/data/inference_data.py:260:27: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:unsupported-operator] arviz/plots/backends/bokeh/kdeplot.py:116:29: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[SupportsRichComparisonT]` | |
+ error[lint:no-matching-overload] arviz/plots/backends/bokeh/khatplot.py:96:48: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] arviz/plots/backends/bokeh/khatplot.py:96:48: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] arviz/plots/backends/bokeh/khatplot.py:96:48: No overload of function `__new__` matches arguments | |
+ error[lint:no-matching-overload] arviz/plots/backends/bokeh/khatplot.py:96:48: No overload of function `__new__` matches arguments | |
- error[lint:not-iterable] arviz/sel_utils.py:112:21: Object of type `Unknown | None | list` may not be iterable | |
+ error[lint:not-iterable] arviz/sel_utils.py:112:21: Object of type `Unknown | None | list[Unknown]` may not be iterable | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1401:58: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1409:58: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1454:17: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1464:13: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1477:17: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1478:17: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1493:17: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[tuple[Literal["chain"], Literal["draw"]]]` | |
+ error[lint:invalid-argument-type] arviz/stats/stats.py:1494:17: Argument to this function is incorrect: Expected `Sequence[Sequence[Unknown]] | None`, found `tuple[Unknown, ...]` | |
- error[lint:invalid-argument-type] arviz/tests/base_tests/test_data.py:594:17: Argument to this function is incorrect: Expected `str | list | None`, found `tuple[Literal["posterior"]]` | |
+ error[lint:invalid-argument-type] arviz/tests/base_tests/test_data.py:594:17: Argument to this function is incorrect: Expected `str | list[Unknown] | None`, found `tuple[Literal["posterior"]]` | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_data.py:1428:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_data.py:1433:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:invalid-assignment] arviz/tests/base_tests/test_data_zarr.py:29:13: Object of type `dict[Unknown, Unknown]` is not assignable to `Mapping[str, list]` | |
+ error[lint:invalid-assignment] arviz/tests/base_tests/test_data_zarr.py:29:13: Object of type `dict[Unknown, Unknown]` is not assignable to `Mapping[str, list[Unknown]]` | |
+ error[lint:invalid-argument-type] arviz/tests/base_tests/test_plots_matplotlib.py:264:16: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_plots_matplotlib.py:721:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_plots_matplotlib.py:766:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_plots_matplotlib.py:795:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/base_tests/test_stats_ecdf_utils.py:126:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/external_tests/test_data_beanmachine.py:14:1: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] arviz/tests/external_tests/test_data_pyjags.py:16:1: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
- error[lint:not-iterable] arviz/tests/helpers.py:39:18: Object of type `@Todo(specialized non-generic class) | None` may not be iterable | |
+ error[lint:not-iterable] arviz/tests/helpers.py:39:18: Object of type `list[Unknown] | None` may not be iterable | |
+ error[lint:invalid-argument-type] doc/source/getting_started/ConversionGuideEmcee.ipynb:44:23: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] examples/bokeh/bokeh_plot_trace.py:9:26: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
+ error[lint:invalid-argument-type] examples/bokeh/bokeh_plot_trace_bars.py:9:26: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
+ error[lint:invalid-argument-type] examples/bokeh/bokeh_plot_trace_circ.py:9:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] examples/bokeh/bokeh_plot_trace_vlines.py:9:26: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
+ error[lint:invalid-argument-type] examples/matplotlib/mpl_plot_trace.py:14:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
+ error[lint:invalid-argument-type] examples/matplotlib/mpl_plot_trace_bars.py:14:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
+ error[lint:invalid-argument-type] examples/matplotlib/mpl_plot_trace_circ.py:14:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] examples/matplotlib/mpl_plot_trace_vlines.py:14:21: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["tau"], Literal["mu"]]` | |
- Found 2655 diagnostics | |
+ Found 2687 diagnostics | |
mitmproxy (https://github.com/mitmproxy/mitmproxy) | |
- warning[lint:call-possibly-unbound-method] examples/contrib/change_upstream_proxy.py:28:34: Method `__getitem__` of type `Unknown | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] examples/contrib/change_upstream_proxy.py:28:34: Method `__getitem__` of type `Unknown | tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
- error[lint:call-non-callable] examples/contrib/change_upstream_proxy.py:34:28: Object of type `GenericAlias` is not callable | |
+ error[lint:unsupported-operator] examples/contrib/http_manipulate_cookies.py:76:19: Operator `+` is unsupported between objects of type `list[dict[str, str | None]]` and `list[dict[str, str | None]]` | |
+ error[lint:unsupported-operator] examples/contrib/mitmproxywrapper.py:124:39: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[str]` | |
+ error[lint:invalid-assignment] examples/contrib/search.py:58:17: Object of type `Literal[False]` is not assignable to attribute `marked` of type `str` | |
+ error[lint:invalid-return-type] examples/contrib/webscanner_helper/urldict.py:60:20: Return type does not match returned value: Expected `list[Any]`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] mitmproxy/addonmanager.py:241:55: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/clientplayback.py:263:46: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/clientplayback.py:287:46: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/comment.py:19:46: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:77:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:103:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:117:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/addons/core.py:121:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:181:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:196:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:215:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/core.py:238:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/addons/core.py:246:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/export.py:68:19: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/export.py:68:19: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-return-type] mitmproxy/addons/export.py:181:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/next_layer.py:79:5: Object of type `tuple[()]` is not assignable to `Sequence[Pattern[Unknown]]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/next_layer.py:80:5: Object of type `tuple[()]` is not assignable to `Sequence[Pattern[Unknown]]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/next_layer.py:81:5: Object of type `tuple[()]` is not assignable to `Sequence[Pattern[Unknown]]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/next_layer.py:82:5: Object of type `tuple[()]` is not assignable to `Sequence[Pattern[Unknown]]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/next_layer.py:121:41: Argument to this function is incorrect: Expected `Sequence[type[Layer] | @Todo(full tuple[...] support)]`, found `tuple[Unknown, ...]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/next_layer.py:175:39: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/next_layer.py:175:39: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/next_layer.py:425:52: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/next_layer.py:425:52: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/savehar.py:267:44: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/savehar.py:267:44: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-argument-type] mitmproxy/addons/serverplayback.py:155:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/serverplayback.py:171:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:not-iterable] mitmproxy/addons/strip_dns_https_records.py:29:34: Object of type `@Todo(full tuple[...] support) | None` may not be iterable | |
+ error[lint:not-iterable] mitmproxy/addons/strip_dns_https_records.py:34:34: Object of type `@Todo(full tuple[...] support) | None` may not be iterable | |
+ error[lint:unresolved-attribute] mitmproxy/addons/tlsconfig.py:146:22: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:unresolved-attribute] mitmproxy/addons/tlsconfig.py:154:22: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:unresolved-attribute] mitmproxy/addons/tlsconfig.py:161:22: Type `_EnumMemberT` has no attribute `name` | |
+ error[lint:unresolved-attribute] mitmproxy/addons/tlsconfig.py:169:22: Type `_EnumMemberT` has no attribute `name` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:292:40: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:292:40: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-assignment] mitmproxy/addons/tlsconfig.py:300:21: Object of type `tuple[Unknown, ...]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/tlsconfig.py:302:21: Object of type `tuple[Unknown, ...]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/tlsconfig.py:311:17: Object of type `list[Unknown]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:326:50: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:326:50: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-argument-type] mitmproxy/addons/tlsconfig.py:376:48: Argument to this function is incorrect: Expected `Sequence[bytes]`, found `list[Unknown]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:440:40: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:440:40: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-assignment] mitmproxy/addons/tlsconfig.py:444:17: Object of type `tuple[Unknown, ...]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/addons/tlsconfig.py:447:17: Object of type `tuple[Unknown, ...]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:627:45: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/addons/tlsconfig.py:627:45: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-return-type] mitmproxy/addons/view.py:309:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/view.py:400:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/addons/view.py:413:52: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/addons/view.py:456:20: Return type does not match returned value: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/command.py:263:16: Return type does not match returned value: Expected `tuple[Sequence[ParseResult], Sequence[CommandParameter]]`, found `tuple[list[Unknown], list[Unknown] | Unknown]` | |
+ error[lint:invalid-assignment] mitmproxy/connection.py:90:5: Object of type `tuple[()]` is not assignable to `Sequence[Cert]` | |
+ error[lint:invalid-assignment] mitmproxy/connection.py:109:5: Object of type `tuple[()]` is not assignable to `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/connection.py:114:5: Object of type `tuple[()]` is not assignable to `Sequence[str]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/contentviews/_view_dns.py:48:21: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/contentviews/_view_dns.py:48:21: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
- error[lint:invalid-assignment] mitmproxy/eventsequence.py:25:9: Object of type `list` is not assignable to attribute `messages` on type `WebSocketData | None` | |
+ error[lint:invalid-assignment] mitmproxy/eventsequence.py:25:9: Object of type `list[Unknown]` is not assignable to attribute `messages` on type `WebSocketData | None` | |
- error[lint:invalid-return-type] mitmproxy/eventsequence.py:78:30: Function can implicitly return `None`, which is not assignable to return type `Iterator` | |
+ error[lint:invalid-return-type] mitmproxy/eventsequence.py:78:30: Function can implicitly return `None`, which is not assignable to return type `Iterator[Hook]` | |
+ error[lint:invalid-assignment] mitmproxy/flowfilter.py:559:1: Object of type `list[Unknown]` is not assignable to `Sequence[type[_Action]]` | |
+ error[lint:invalid-assignment] mitmproxy/flowfilter.py:575:1: Object of type `list[Unknown]` is not assignable to `Sequence[type[_Rex]]` | |
+ error[lint:invalid-argument-type] mitmproxy/io/compat.py:510:34: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `(Unknown & ~int) | None` | |
- error[lint:invalid-return-type] mitmproxy/net/http/headers.py:29:12: Return type does not match returned value: Expected `tuple[str, str, dict[str, str]] | None`, found `tuple[@Todo(specialized non-generic class), @Todo(specialized non-generic class), OrderedDict[Unknown, Unknown]]` | |
+ error[lint:invalid-return-type] mitmproxy/net/http/headers.py:29:12: Return type does not match returned value: Expected `tuple[str, str, dict[str, str]] | None`, found `tuple[Unknown, Unknown, OrderedDict[Unknown, Unknown]]` | |
+ error[lint:unsupported-operator] mitmproxy/proxy/layers/http/_http2.py:387:12: Operator `+` is unsupported between objects of type `list[Unknown]` and `list[Unknown] | list[tuple[bytes, bytes]]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/http/_upstream_proxy.py:41:13: Object of type `Unknown | tuple[Literal[b"http/1.1"], Literal[b"http/1.0"], Literal[b"http/0.9"]]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/quic/_stream_layers.py:423:13: Object of type `list[Unknown]` is not assignable to attribute `certificate_list` of type `Sequence[Cert]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/quic/_stream_layers.py:425:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/quic/_stream_layers.py:426:13: Object of type `list[Unknown]` is not assignable to attribute `cipher_list` of type `Sequence[str]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/tls.py:550:13: Object of type `list[Unknown]` is not assignable to attribute `certificate_list` of type `Sequence[Cert]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/tls.py:552:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] mitmproxy/proxy/layers/tls.py:553:13: Object of type `list[Unknown]` is not assignable to attribute `cipher_list` of type `Sequence[str]` | |
- warning[lint:call-possibly-unbound-method] mitmproxy/proxy/server.py:251:20: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/proxy/server.py:251:20: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
- warning[lint:call-possibly-unbound-method] mitmproxy/proxy/server.py:251:53: Method `__getitem__` of type `@Todo(Support for `typing.GenericAlias` instances in type expressions) | None` is possibly unbound | |
+ warning[lint:call-possibly-unbound-method] mitmproxy/proxy/server.py:251:53: Method `__getitem__` of type `tuple[@Todo(Generic tuple specializations), ...] | None` is possibly unbound | |
+ error[lint:invalid-argument-type] mitmproxy/proxy/server.py:520:9: Argument to this function is incorrect: Expected `Sequence[str] | None`, found `tuple[Literal["eager"], Literal["lazy"]]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/taddons.py:77:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `tuple[Unknown, ...]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:233:9: Argument to this function is incorrect: Expected `Sequence[Cert]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:234:9: Argument to this function is incorrect: Expected `Sequence[bytes]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:235:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:258:9: Argument to this function is incorrect: Expected `Sequence[Cert]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:259:9: Argument to this function is incorrect: Expected `Sequence[bytes]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/test/tflow.py:261:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/tools/console/consoleaddons.py:126:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/tools/console/consoleaddons.py:392:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/tools/console/consoleaddons.py:459:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/tools/console/consoleaddons.py:656:16: Return type does not match returned value: Expected `Sequence[str]`, found `Unknown | list[str]` | |
+ error[lint:invalid-return-type] mitmproxy/tools/console/consoleaddons.py:682:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:5:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:9:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:12:38: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:13:34: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:14:42: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:15:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:16:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:17:42: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:18:33: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:19:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:20:39: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:21:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:22:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:23:47: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:24:47: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:25:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:27:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:29:38: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:30:36: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:31:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:32:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:33:38: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:34:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:35:39: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:36:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:37:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:38:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:39:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:44:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:47:50: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:48:57: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:52:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:58:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:64:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:70:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:74:45: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:82:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:85:52: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:89:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:95:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:99:50: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:101:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:105:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:111:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:120:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:123:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:124:51: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:126:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:128:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:132:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:138:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:141:37: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:145:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:151:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:157:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:167:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:173:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:176:54: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:177:40: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:185:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:188:36: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:195:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:204:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:208:50: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:209:50: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:210:34: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:211:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:213:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:215:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:217:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:221:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:227:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:230:46: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:234:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:241:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:251:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:257:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:263:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/console/defaultkeys.py:269:9: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] mitmproxy/tools/console/grideditor/base.py:405:5: Object of type `tuple[()]` is not assignable to `Sequence[Column]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/main.py:144:58: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/main.py:161:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/main.py:168:48: Argument to this function is incorrect: Expected `Sequence[str]`, found `Unknown | None` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/web/app.py:94:34: Argument to this function is incorrect: Expected `Sequence[Cert]`, found `Sequence[Cert] | Unknown | list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/tools/web/app.py:111:34: Argument to this function is incorrect: Expected `Sequence[Cert]`, found `Sequence[Cert] | Unknown | list[Unknown]` | |
+ error[lint:no-matching-overload] mitmproxy/tools/web/app.py:833:40: No overload of function `dirname` matches arguments | |
+ error[lint:no-matching-overload] mitmproxy/tools/web/app.py:834:38: No overload of function `dirname` matches arguments | |
- warning[lint:unused-ignore-comment] mitmproxy/utils/asyncio_utils.py:45:33: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-return-type] mitmproxy/types.py:93:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:131:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:145:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:159:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:173:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:208:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:222:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:238:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:252:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:313:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:317:16: Return type does not match returned value: Expected `CutSpec`, found `list[str]` | |
+ error[lint:invalid-argument-type] mitmproxy/types.py:367:64: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] mitmproxy/types.py:386:63: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] mitmproxy/types.py:455:16: Return type does not match returned value: Expected `Sequence[str]`, found `Unknown | list[_T]` | |
- warning[lint:unused-ignore-comment] mitmproxy/utils/asyncio_utils.py:50:31: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_cut.py:94:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_cut.py:123:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_cut.py:132:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_cut.py:153:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_next_layer.py:447:5: Object of type `tuple[()]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_next_layer.py:448:5: Object of type `tuple[()]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_next_layer.py:449:5: Object of type `tuple[()]` is not assignable to `Sequence[str]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:468:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:477:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:500:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:686:17: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:831:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_next_layer.py:893:33: Argument to this function is incorrect: Expected `Sequence[type[Layer] | @Todo(full tuple[...] support)]`, found `list[type[Layer]]` | |
+ error[lint:unresolved-attribute] test/mitmproxy/addons/test_proxyserver.py:307:20: Type `Layer` has no attribute `flows` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_savehar.py:149:9: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_savehar.py:253:31: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:184:17: Object of type `list[Unknown]` is not assignable to attribute `certificate_list` of type `Sequence[Cert]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:207:17: Object of type `list[Unknown]` is not assignable to attribute `certificate_list` of type `Sequence[Cert]` | |
- error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:295:13: Object of type `list` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:295:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:328:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:329:13: Object of type `list[Unknown]` is not assignable to attribute `cipher_list` of type `Sequence[str]` | |
- error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:379:13: Object of type `list` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:379:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:415:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_offers` of type `Sequence[bytes]` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:439:17: Object of type `None` is not assignable to attribute `alpn_offers` on type `Unknown | Server` | |
+ error[lint:invalid-assignment] test/mitmproxy/addons/test_tlsconfig.py:542:17: Object of type `list[Unknown]` is not assignable to attribute `certificate_list` of type `Sequence[Cert]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:33:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:36:18: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:326:13: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:365:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:376:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:386:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:450:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:454:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:457:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:496:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:511:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:518:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:527:14: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:538:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:541:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:545:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:550:15: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:555:18: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:563:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:574:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:584:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:588:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:610:9: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:636:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/addons/test_view.py:645:11: Argument to this function is incorrect: Expected `Sequence[Flow]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/contentviews/test__view_urlencoded.py:7:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/contentviews/test__view_urlencoded.py:10:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] test/mitmproxy/contentviews/test__view_xml_html.py:20:16: No overload of function `next` matches arguments | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:124:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:128:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:132:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:136:20: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:142:23: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:143:23: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/net/http/test_url.py:144:27: Argument to this function is incorrect: Expected `Sequence[tuple[str, str]]`, found `list[Unknown]` | |
+ error[lint:not-iterable] test/mitmproxy/proxy/layers/http/test_http2.py:569:59: Object of type `_T` is not iterable | |
+ error[lint:not-iterable] test/mitmproxy/proxy/layers/http/test_http2.py:571:60: Object of type `_T` is not iterable | |
+ error[lint:invalid-argument-type] test/mitmproxy/proxy/layers/http/test_http2.py:700:30: Argument to this function is incorrect: Expected `Sequence[tuple[bytes, bytes]]`, found `list[Unknown]` | |
- error[lint:invalid-assignment] test/mitmproxy/proxy/layers/http/test_http3.py:564:9: Object of type `str` is not assignable to attribute `stream` of type `((bytes, /) -> @Todo(specialized non-generic class) | bytes) | bool` | |
+ error[lint:invalid-assignment] test/mitmproxy/proxy/layers/http/test_http3.py:564:9: Object of type `str` is not assignable to attribute `stream` of type `((bytes, /) -> Iterable[bytes]) | bool` | |
- error[lint:invalid-assignment] test/mitmproxy/proxy/layers/quic/test__stream_layers.py:507:13: Object of type `list` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/proxy/layers/quic/test__stream_layers.py:507:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
- error[lint:invalid-assignment] test/mitmproxy/proxy/layers/quic/test__stream_layers.py:523:13: Object of type `list` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-assignment] test/mitmproxy/proxy/layers/quic/test__stream_layers.py:523:13: Object of type `list[Unknown]` is not assignable to attribute `alpn_protocols` on type `QuicTlsSettings | None` | |
+ error[lint:invalid-argument-type] test/mitmproxy/proxy/layers/test_tls.py:237:41: Argument to this function is incorrect: Expected `Sequence[bytes]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/proxy/test_context.py:10:25: Argument to this function is incorrect: Expected `Layer`, found `Literal[1]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/proxy/test_context.py:13:25: Argument to this function is incorrect: Expected `Layer`, found `Literal[2]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/proxy/test_context.py:14:26: Argument to this function is incorrect: Expected `Layer`, found `Literal[3]` | |
+ error[lint:invalid-return-type] test/mitmproxy/proxy/tutils.py:83:6: Return type does not match returned value: Expected `list[@Todo(Inference of subscript on special form)]`, found `types.GeneratorType` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_command.py:45:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_command.py:48:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_command.py:52:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_command.py:98:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_command.py:105:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_command.py:110:24: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_command.py:113:27: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_command.py:603:16: Return type does not match returned value: Expected `Sequence[Flow]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] test/mitmproxy/test_command.py:607:16: Return type does not match returned value: Expected `Data`, found `list` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_command.py:607:16: Return type does not match returned value: Expected `Data`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_connection.py:43:13: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_http.py:149:57: Argument to this function is incorrect: Expected `Iterable[tuple[bytes, bytes]]`, found `Literal[42]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/test_http.py:517:27: Argument to this function is incorrect: Expected `Iterable[tuple[bytes, bytes]]`, found `Literal[42]` | |
+ error[lint:no-matching-overload] test/mitmproxy/test_proxy.py:25:16: No overload of bound method `parse_args` matches arguments | |
+ error[lint:invalid-return-type] test/mitmproxy/test_types.py:212:16: Return type does not match returned value: Expected `Sequence[Flow]`, found `list[Unknown]` | |
- error[lint:invalid-return-type] test/mitmproxy/test_types.py:216:16: Return type does not match returned value: Expected `Data`, found `list` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_types.py:216:16: Return type does not match returned value: Expected `Data`, found `list[Unknown]` | |
+ error[lint:invalid-return-type] test/mitmproxy/test_types.py:220:16: Return type does not match returned value: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_common.py:11:42: Argument to this function is incorrect: Expected `RenderMode`, found `_EnumMemberT` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_common.py:13:20: Argument to this function is incorrect: Expected `RenderMode`, found `_EnumMemberT` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:20:34: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:22:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:34:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:45:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:46:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:51:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:65:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:69:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:73:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] test/mitmproxy/tools/console/test_keymap.py:137:33: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] test/mitmproxy/tools/test_cmdline.py:12:12: No overload of bound method `parse_args` matches arguments | |
- Found 2195 diagnostics | |
+ Found 2455 diagnostics | |
pytest (https://github.com/pytest-dev/pytest) | |
+ error[lint:no-matching-overload] src/_pytest/_code/code.py:392:43: No overload of function `fspath` matches arguments | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:747:21: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:917:33: Argument to this function is incorrect: Expected `Sequence[tuple[str, object]]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1050:31: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
- warning[lint:unused-ignore-comment] src/_pytest/_code/code.py:1167:75: Unused blanket `type: ignore` directive | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1095:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1099:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1103:30: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1127:34: Argument to this function is incorrect: Expected `Sequence[ReprEntry | ReprEntryNative]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1132:34: Argument to this function is incorrect: Expected `Sequence[ReprEntry | ReprEntryNative]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1195:25: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1207:53: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1224:35: Argument to this function is incorrect: Expected `Sequence[tuple[ReprTraceback, ReprFileLocation | None, str | None]]`, found `list[Unknown] | @Todo(Support for `typing.Self`)` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1391:26: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-argument-type] src/_pytest/_code/code.py:1391:40: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:invalid-parameter-default] src/_pytest/_io/terminalwriter.py:186:51: Default value of type `tuple[()]` is not assignable to annotated parameter type `Sequence[str]` | |
+ error[lint:invalid-assignment] src/_pytest/_io/terminalwriter.py:198:13: Object of type `list[Unknown]` is not assignable to `Sequence[str]` | |
+ warning[lint:possibly-unbound-attribute] src/_pytest/assertion/__init__.py:93:5: Attribute `mark_rewrite` on type `MetaPathFinderProtocol | DummyRewriteHook` is possibly unbound | |
+ error[lint:unresolved-attribute] src/_pytest/assertion/rewrite.py:711:32: Type `expr` has no attribute `value` | |
+ error[lint:unresolved-attribute] src/_pytest/assertion/rewrite.py:713:23: Type `expr` has no attribute `value` | |
- warning[lint:possibly-unbound-attribute] src/_pytest/assertion/rewrite.py:731:22: Attribute `lineno` on type `None | @Todo(specialized non-generic class)` is possibly unbound | |
+ warning[lint:possibly-unbound-attribute] src/_pytest/assertion/rewrite.py:731:22: Attribute `lineno` on type `None | stmt` is possibly unbound | |
+ error[lint:unresolved-attribute] src/_pytest/assertion/rewrite.py:1033:25: Type `expr` has no attribute `id` | |
- warning[lint:unused-ignore-comment] src/_pytest/assertion/rewrite.py:1093:89: Unused blanket `type: ignore` directive | |
+ error[lint:unresolved-attribute] src/_pytest/assertion/rewrite.py:1092:19: Type `expr` has no attribute `id` | |
+ error[lint:unsupported-operator] src/_pytest/assertion/rewrite.py:1097:34: Operator `+` is unsupported between objects of type `@Todo(Support for `typing.TypeAlias`) | None` and `Literal["="]` | |
+ error[lint:invalid-argument-type] src/_pytest/assertion/util.py:65:28: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/assertion/util.py:332:35: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/assertion/util.py:332:63: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/assertion/util.py:361:43: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/assertion/util.py:361:61: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:call-non-callable] src/_pytest/compat.py:129:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] src/_pytest/config/__init__.py:298:41: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[str]` | |
+ error[lint:call-non-callable] src/_pytest/config/__init__.py:756:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:unsupported-operator] src/_pytest/config/__init__.py:1204:21: Operator `+` is unsupported between objects of type `list[str]` and `list[str]` | |
+ error[lint:call-non-callable] src/_pytest/config/__init__.py:1750:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:invalid-argument-type] src/_pytest/config/__init__.py:2009:44: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:no-matching-overload] src/_pytest/config/argparsing.py:113:20: No overload of function `fspath` matches arguments | |
+ error[lint:no-matching-overload] src/_pytest/config/argparsing.py:170:20: No overload of function `fspath` matches arguments | |
+ error[lint:call-non-callable] src/_pytest/config/findpaths.py:68:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-assignment] src/_pytest/debugging.py:84:13: Implicit shadowing of function `set_trace` | |
+ error[lint:call-non-callable] src/_pytest/debugging.py:205:21: Object of type `_WithException[Unknown, Literal[Exit]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/debugging.py:407:9: Object of type `_WithException[Unknown, Literal[Exit]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/doctest.py:221:17: Object of type `_WithException[Unknown, Literal[Exit]]` is not callable | |
+ error[lint:invalid-argument-type] src/_pytest/doctest.py:303:43: Argument to this function is incorrect: Expected `Sequence[DocTestFailure]`, found `list[Unknown] & ~AlwaysFalsy` | |
+ error[lint:invalid-assignment] src/_pytest/doctest.py:329:13: Object of type `list[Unknown]` is not assignable to `Sequence[DocTestFailure | UnexpectedException] | None` | |
+ error[lint:unsupported-operator] src/_pytest/doctest.py:344:26: Operator `+` is unsupported between objects of type `int | None | @Todo(map_with_boundness: intersections with negative contributions)` and `int | @Todo(map_with_boundness: intersections with negative contributions)` | |
+ warning[lint:possibly-unbound-attribute] src/_pytest/doctest.py:352:25: Attribute `splitlines` on type `str | None | @Todo(map_with_boundness: intersections with negative contributions)` is possibly unbound | |
+ error[lint:invalid-argument-type] src/_pytest/doctest.py:379:32: Argument to this function is incorrect: Expected `Sequence[tuple[ReprFileLocation, Sequence[str]]]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] src/_pytest/doctest.py:458:9: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/doctest.py:569:17: Object of type `_WithException[Unknown, Literal[Skipped]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:636:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:655:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:774:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] src/_pytest/fixtures.py:858:55: Argument to this function is incorrect: Expected `Sequence[str]`, found `list[Unknown]` | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:923:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:946:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:1221:13: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:call-non-callable] src/_pytest/fixtures.py:1272:9: Object of type `_WithException[Unknown, Literal[Failed]]` is not callable | |
+ error[lint:invalid-argument-type] src/_pytest/fixtures.py:1365:70: Argument to this function is incorrect: Expected `Iterable[Unknown]`, found `Sequence[object] | (((Any, /) -> object) & ~None)` | |
+ error[lint:invalid-return-type] src/_pytest/fixtures.py:1585:53: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-return-type] src/_pytest/fixtures.py:1592:57: Function can implicitly return `None`, which is not assignable to return type `Iterator[str]` | |
+ error[lint:invalid-argument-type] src/_pytest/fixtures.py:1692:34: Argument to this function is incorrect: Expected `Sequence[Item]`, found `list[Item]` | |
+ error[lint:invalid-return-type] src/_pytest/fixtures.py:1849:16: Return type does not match returned value: Expected `Sequence[FixtureDef[Any]] | None`, found `tuple[Unknown, ...]` | |
+ error[lint:unresolved-attribute] src/_pytest/helpconfig.py:279:21: Type `object` has no attribute `__file__` | |
+ error[lint:invalid-return-type] src/_pytest/hookspec.py:1039:6: Function can implicitly return `None`, which is not assignable to return type `str | li |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment